From 2e1e4b5306c4a2d8c027e3be216bfd3949c6cd21 Mon Sep 17 00:00:00 2001 From: chenglong Date: Thu, 10 Apr 2025 16:34:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/shop-withdraw-cash/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/api/shop-withdraw-cash/index.js b/src/api/shop-withdraw-cash/index.js index e45af77..9eda96d 100644 --- a/src/api/shop-withdraw-cash/index.js +++ b/src/api/shop-withdraw-cash/index.js @@ -21,7 +21,7 @@ export function shopBillingpage (pageParam) { // 根据id 查看详情 export function detail (id) { return request({ - url: '/tmerclub_admin/p/shop_withdraw_cash/info', + url: '/tmerclub_admin/mup/shopWithdrawalApply/info', method: 'get', params: { cashId: id } }) @@ -30,7 +30,7 @@ export function detail (id) { // 提交审核 export function submit (data) { return request({ - url: '/tmerclub_admin/p/shop_withdraw_cash/audit', + url: '/tmerclub_admin/mup/shopWithdrawalApply/audit', method: 'put', data }) @@ -39,7 +39,7 @@ export function submit (data) { // 保存配置 export function save (data) { return request({ - url: '/tmerclub_admin/p/shop_withdraw_cash/save', + url: '/tmerclub_admin/mup/shopWithdrawalApply/save', method: 'post', data }) @@ -47,7 +47,7 @@ export function save (data) { export function getConfig () { return request({ - url: '/tmerclub_admin/p/shop_withdraw_cash/getWithdrawCash', + url: '/tmerclub_admin/mup/shopWithdrawalApply/getWithdrawCash', method: 'get' }) }