This commit is contained in:
2025-04-30 10:02:22 +08:00
parent ff17e84aed
commit d7fe2a62a9
10 changed files with 6942 additions and 58 deletions

View File

@@ -152,6 +152,20 @@ const merchant = {
data: data
});
},
getBusinessInfo: async (data) => {
return request({
url: '/index/business/getInfo',
method: Method.POST,
data: data
});
},
rechargeOrderQR: async (data) => {
return request({
url: '/index/business/rechargeOrder',
method: Method.POST,
data: data
});
},
}
export default merchant;