优化绑定功能按钮显示

This commit is contained in:
geng.tang@qq.com
2024-01-10 13:45:57 +08:00
parent a1d0e825ef
commit e954472f26
12 changed files with 795 additions and 19 deletions

View File

@@ -9,8 +9,15 @@ export const listMerchant = (params) => http.get('/shop/merchant', {params})
// 获取商户详情
export const getMerchant = (merchantId) => http.get('/shop/merchant/page', {merchantId})
// 申请退款
export const addWithdraw = (data) => http.post('/shop/merchant-withdraw/apply', data)
export const withdrawPage = (params) => http.get('/shop/merchant-withdraw/page/app', {params})
export default {
pageMerchant,
listMerchant,
getMerchant
getMerchant,
addWithdraw,
withdrawPage
}