This commit is contained in:
qsh
2026-02-07 12:51:10 +08:00
parent 3943c5a70e
commit e88aabc5c3
7 changed files with 102 additions and 216 deletions

View File

@@ -48,3 +48,12 @@ export const getPersonAccount = async () => {
method: 'get'
});
};
// 修改密码
export const updatePassword = async data => {
return request({
url: '/system/user/profile/update-password',
method: 'put',
data
});
};

View File

@@ -52,3 +52,12 @@ export const getDistributorDetail = id => {
method: 'get'
});
};
// 更新二维码状态
export const updateQrcodeStatus = data => {
return request({
url: '/applet/xunjia/distributor/status/update',
method: 'put',
data
});
};