鸿宇研学生前端代码
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.
 
 
 

32 lines
569 B

// 订单相关接口
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,
},
// 我的订单-支付订单
createOrder: {
url: '/order/payOrder',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
}
export default api