[解决冲突]

This commit is contained in:
2021-10-29 10:32:10 +08:00
41 changed files with 72317 additions and 59 deletions

22
apis/interfaces/alipay.js Normal file
View File

@@ -0,0 +1,22 @@
/**
* Web唐明明
* 匆匆数载恍如梦,岁月迢迢华发增。
* 碌碌无为枉半生,一朝惊醒万事空。
* moduleName: 支付宝
*/
import { request } from '../index'
// 支付宝下单
const getAliPayConfig = (orderId, data) => {
return request({
url: 'user/identities/pay/' + orderId + '/alipay',
data
})
}
export {
getAliPayConfig
}