mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-09-20 20:02:05 +08:00
fix(userManage): 提交前对密码进行 MD5 加密
- 用户管理表单在注册或更新用户时,先将密码 MD5 加密后再提交服务端,提升密码传输安全性
This commit is contained in:
@@ -302,7 +302,7 @@ export default {
|
||||
}
|
||||
const params = {
|
||||
username: this.form.username,
|
||||
password: this.form.password,
|
||||
password: this.md5(this.form.password),
|
||||
nickName: this.form.nickName,
|
||||
mobile: this.form.mobile,
|
||||
email: this.form.email,
|
||||
|
||||
Reference in New Issue
Block a user