Merge branch 'cloud' into dev0731

This commit is contained in:
BOE\10867418
2023-08-07 13:17:11 +08:00
2 changed files with 38 additions and 3 deletions

View File

@@ -8,6 +8,11 @@ const logout = function() {
return ajax.post('/b1/system/user/logout',{});
}
const getRsaPublicKey(){
return ajax.get('/b1/common/secret/rsa-public-key');
}
/**修改密码
* oldPassword:'',
* newPassword:'',
@@ -20,5 +25,6 @@ const modifyPassword = function(data) {
export default {
logout,
modifyPassword
modifyPassword,
getRsaPublicKey
}