// 订单相关接口 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