#I5MD0X 增加修改自己登录密码功能

This commit is contained in:
暮光:城中城
2022-08-15 23:49:10 +08:00
parent 93ef472ea0
commit 2b5d276afa
3 changed files with 109 additions and 6 deletions

View File

@@ -10,6 +10,9 @@ export default {
},
getSelfUserInfo: data => {
return request({url: '/user/info/selfInfo', method: 'post', data: Qs.stringify(data)});
},
updateSelfPwd: data => {
return request({url: '/user/info/updateSelfPwd', method: 'post', data: Qs.stringify(data)});
},
selfInfoWithAuth: data => {
return request({url: '/user/info/selfInfoWithAuth', method: 'post', data: Qs.stringify(data)});