增加扫码支付页面

This commit is contained in:
2025-10-30 09:51:28 +08:00
parent 2882a50828
commit dbf6a61ac7
4 changed files with 143 additions and 2 deletions

View File

@@ -98,3 +98,13 @@ export function queryOrderStatus(data, urlType = 'order') {
}
})
}
// 分销员开通支付
export function mchRecharge(data, urlType = 'order') {
return request({
url: `${urlType}/pay/distribution/mchRecharge`,
method: "POST",
data: {
...data
}
})
}