爱简收旧衣按件回收前端代码仓库
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.
 
 
 
 

30 lines
649 B

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/index/getQuestionListDetail',
method: 'GET',
auth : false,
},
// 联系客服问题相关详情
withdraw: {
url: '/recycle-admin/applet/money/withdraw',
method: 'POST',
auth : true,
},
}
export default api