This commit is contained in:
2025-06-04 08:55:14 +08:00
parent 4a945c763f
commit d6306fd462
14 changed files with 300 additions and 58 deletions

View File

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