申请退换货页面及重构page.json

This commit is contained in:
2022-06-09 13:16:28 +08:00
parent 8f9c1a412b
commit 74064e17ce
19 changed files with 1240 additions and 569 deletions

View File

@@ -17,15 +17,25 @@ const wxPAY = (orderNo) => {
}
const alPAY = (orderNo) => {
return request({
url: 'mall/pay/' + orderNo + '/alipay',
data: {
type: 'app'
}
})
return request({
url: 'mall/pay/' + orderNo + '/alipay',
data: {
type: 'app'
}
})
}
const dtPAY = (orderNo) => {
return request({
url: 'mall/pay/' + orderNo + '/account',
data: {
type: 'app'
}
})
}
export {
wxPAY,
alPAY
alPAY,
dtPAY
}