2022年5月29日 从svn移到git

This commit is contained in:
daihh
2022-05-29 18:59:24 +08:00
parent 9580ff8c9b
commit faa7afb65f
897 changed files with 171836 additions and 0 deletions

24
api/boe/login.js Normal file
View File

@@ -0,0 +1,24 @@
/**控制台相关的控制数据*/
import ajax from '@/api/boe/boeApiAjax.js'
/**
* 退出登录
*/
const logout = function() {
return ajax.postJson('/b1/system/user/logout',{from:'wechat'});
}
/**修改密码
* oldPassword:'',
* newPassword:'',
* confirmPassword:''
*/
const modifyPassword = function(data) {
return ajax.postJson('/b1/system/user/update-password',data);
}
export default {
logout,
modifyPassword
}