This commit is contained in:
USER-20220102CG\noblelift
2022-09-28 18:08:01 +08:00
parent fd72946b89
commit 42561ad4f6
442 changed files with 46040 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import request from '@/utils/request'
export function get() {
return request({
url: 'api/aliPay',
method: 'get'
})
}
export function update(data) {
return request({
url: 'api/aliPay',
data,
method: 'put'
})
}
// 支付
export function toAliPay(url, data) {
return request({
url: 'api/' + url,
data,
method: 'post'
})
}