鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

60 lines
1.1 KiB

// 订单相关接口
const api = {
// 我的订单-查询订单列表
queryOrderList: {
url: '/order/queryOrderList',
method: 'GET',
},
// 我的订单-查询订单详情
queryOrderById: {
url: '/order/queryOrderById',
method: 'GET',
},
// 我的订单-创建订单
createOrder: {
url: '/order/createOrder',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 我的订单-支付订单
payOrder: {
url: '/order/payOrder',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 我的订单-查询出行人列表
queryTouristList: {
url: '/order/queryTouristList',
method: 'GET',
auth: true,
},
// 我的订单-查询出行人详情
queryTouristById: {
url: '/order/queryTouristById',
method: 'GET',
auth: true,
},
// 我的订单-添加出行人
addTourist: {
url: '/order/addTourist',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 我的订单-修改出行人信息
updateTourist: {
url: '/order/updateTourist',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
}
export default api