Commit 75d572a1 by 吕明尚

初版订单换房功能

parent ca9ac818
......@@ -27,6 +27,22 @@ export function queryOrder(query) {
}
// 查询订单详细
export function changeRoomList(id) {
return request({
url: '/system/order/changeRoomList?id=' + id,
method: 'get'
})
}
export function changeRoom(data) {
return request({
url: '/system/order/changeRoom',
method: 'post',
data: data
})
}
export function getOrder(id) {
return request({
url: '/system/order/' + id,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment