修复营销活动

This commit is contained in:
sj
2022-09-30 18:31:40 +08:00
parent 36efe2efac
commit eb5877bbd3
10 changed files with 81 additions and 22 deletions
+3 -3
View File
@@ -2,14 +2,14 @@ import request from '@/utils/request'
export function get() {
return request({
url: 'api/aliPay',
url: 'bxg/api/aliPay',
method: 'get'
})
}
export function update(data) {
return request({
url: 'api/aliPay',
url: 'bxg/api/aliPay',
data,
method: 'put'
})
@@ -18,7 +18,7 @@ export function update(data) {
// 支付
export function toAliPay(url, data) {
return request({
url: 'api/' + url,
url: 'bxg/api/' + url,
data,
method: 'post'
})