add: 优化

This commit is contained in:
gyq
2025-09-27 13:25:11 +08:00
parent d3636be742
commit 205aeb1320
2 changed files with 69 additions and 8 deletions

View File

@@ -136,10 +136,20 @@ export function shopRecharge(data) {
data
});
}
// 智慧充值 配置信息获取
export function shopRechargeGet() {
return request({
url: `${Market_BaseUrl + "/admin/shopRecharge"}`,
method: 'get'
});
}
// 获取店铺用户列表
export function getShopUserList(params) {
return request({
url: `${Account_BaseUrl + "/admin/shopUser/getPage"}`,
method: 'get',
params
});
}