This commit is contained in:
2025-06-10 14:04:28 +08:00
parent d6306fd462
commit 443b164348
6 changed files with 239 additions and 72 deletions

View File

@@ -421,6 +421,41 @@ const merchant = {
data: data
});
},
getWithdrawalInfo: async (id) => {
return request({
url: '/index/business/getWithdrawalInfo',
method: Method.POST,
data: {id}
});
},
editWithdrawal: async (data) => {
return request({
url: '/index/business/editWithdrawal',
method: Method.POST,
data: data
});
},
delWithdrawal: async (id) => {
return request({
url: '/index/business/delWithdrawal',
method: Method.POST,
data: {id}
});
},
getBusinessMoneyLog: async (data) => {
return request({
url: '/index/business/getBusinessMoneyLog',
method: Method.POST,
data: data
});
},
getPurpose: async (data) => {
return request({
url: '/index/business/getPurpose',
method: Method.POST,
data: data
});
},
}
export default merchant;