普兆健康管家前端代码仓库
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.
 
 
 

37 lines
552 B

// 订单相关接口
const api = {
// 订单-列表查询
getOrderList: {
url: '/order/list',
method: 'GET',
auth: true,
showLoading : true,
},
// 订单详情
getOrderDetail: {
url: '/order/detail',
method: 'GET',
auth: true,
showLoading : true,
},
// 创建订单
createOrder: {
url: '/order/create',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 再次支付
payOrder: {
url: '/order/pay',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
}
export default api