This commit is contained in:
2025-06-13 18:48:36 +08:00
parent e10695098c
commit e90242f469
2 changed files with 151 additions and 12 deletions

View File

@@ -526,6 +526,20 @@ const merchant = {
data: data
});
},
getRechargeLog: async (data) => {
return request({
url: '/index/business/getRechargeLog',
method: Method.POST,
data: data
});
},
getWithdrawalLog: async (data) => {
return request({
url: '/index/business/getWithdrawalLog',
method: Method.POST,
data: data
});
},
}
export default merchant;