对修改密码进行加密处理

This commit is contained in:
daihh
2023-08-10 17:22:37 +08:00
parent 1889335347
commit 3411796caf
3 changed files with 56 additions and 25 deletions

View File

@@ -17,8 +17,12 @@ const modifyPassword = function(data) {
return ajax.postJson('/b1/system/user/update-password',data);
}
const getRsaPublicKey=function(){
return ajax.get('/b1/common/secret/rsa-public-key');
}
export default {
logout,
modifyPassword
modifyPassword,
getRsaPublicKey
}