2
0

新增重置密码以及密码复杂度

This commit is contained in:
lai
2025-02-19 11:34:24 +08:00
parent 41fbdafc54
commit 0864a040d9
9 changed files with 176 additions and 8 deletions

View File

@@ -60,3 +60,10 @@ export function doGetUserDeptTree() {
method: 'get'
});
}
export function doUpdatePwd(pwdJson: any) {
var url= `/system/user/profile/updatePwd?oldPassword=${pwdJson.oldPassword}&newPassword=${pwdJson.newPassword}`;
return request({ url, method: 'put'});
}