|
|
const api = {
|
|
// 获取回收去向
|
|
getRecyclingDestination: {
|
|
url: '/recycle-admin/applet/index/getRecyclingDestination',
|
|
method: 'GET',
|
|
auth : false,
|
|
},
|
|
// 获取回收去向详情
|
|
getRecyclingDestinationDetail: {
|
|
url: '/recycle-admin/applet/index/getRecyclingDestinationDetail',
|
|
method: 'GET',
|
|
auth : false,
|
|
},
|
|
// 联系客服问题相关详情
|
|
getQuestionListDetail: {
|
|
url: '/recycle-admin/applet/order/getQuestionListDetail',
|
|
method: 'GET',
|
|
auth : false,
|
|
},
|
|
// 提现
|
|
withdraw: {
|
|
url: '/recycle-admin/applet/money/withdraw',
|
|
method: 'POST',
|
|
auth : true,
|
|
limit: 2000,
|
|
showLoading: true,
|
|
},
|
|
// 提现领取成功
|
|
withdrawSUccess: {
|
|
url: '/recycle-admin/applet/money/withdrawSUccess',
|
|
method: 'POST',
|
|
auth : true,
|
|
},
|
|
// 根据快递单号查询订单号
|
|
getOrderIdBywliuNo: {
|
|
url: '/recycle-admin/applet/info_team_order/getOrderIdBywliuNo',
|
|
method: 'GET',
|
|
auth : true,
|
|
},
|
|
}
|
|
|
|
export default api
|