同步数据

This commit is contained in:
2022-06-12 13:09:03 +08:00
parent b8c986c0d8
commit 238db66375
15 changed files with 2380 additions and 1238 deletions

View File

@@ -24,11 +24,21 @@ const alPAY = (orderNo) => {
}
})
}
const dtPAY = (orderNo) => {
const payIndex =()=>{
return request({
url: 'mall/pay/index'
})
}
const dtPAY = (orderNo,password) => {
return request({
url: 'mall/pay/' + orderNo + '/account',
method:'post',
data: {
type: 'app'
type: 'app',
transfer_password:password
}
})
}
@@ -37,5 +47,6 @@ const dtPAY = (orderNo) => {
export {
wxPAY,
alPAY,
dtPAY
dtPAY,
payIndex,
}