### commit message

1. 新增安全设置页面,支持修改密码功能
在管理界面新增安全设置视图,允许用户更新登录密码。实现包括表单验证、验证码发送与验证、旧密码检查及新密码设置的密码修改流程。

2. 实现用户信息展示及编辑功能
新增用户信息管理页面,展示用户的详细信息包括用户名、手机号、邮箱、所属部门、职位及创建日期。支持个人信息的查看及编辑功能,增强用户管理的便捷性。
master
wxy 2024-09-02 10:06:49 +08:00
parent 3079fc161e
commit 666cab6509
1 changed files with 16 additions and 0 deletions

View File

@ -41,6 +41,22 @@ export function checkRealNameAuth(data) {
})
}
// 发送验证码
export function sendCode(phonenumber) {
return request({
url: '/system/aliyun/pay/sendCode/' + phonenumber,
method: 'post',
})
}
//检查验证码
export function checkCode(phonenumber,code) {
return request({
url: '/system/aliyun/pay/checkCode/'+ phonenumber +"/" + code,
method: 'post',
})
}
// 充值用户余额记录
export function createRechargeRecord(data) {
return request({