fix(userManage): 提交前对密码进行 MD5 加密

- 用户管理表单在注册或更新用户时,先将密码 MD5 加密后再提交服务端,提升密码传输安全性
This commit is contained in:
田香琪
2026-08-13 19:20:08 +08:00
parent 0c94b67ad9
commit f42f5903d3

View File

@@ -302,7 +302,7 @@ export default {
} }
const params = { const params = {
username: this.form.username, username: this.form.username,
password: this.form.password, password: this.md5(this.form.password),
nickName: this.form.nickName, nickName: this.form.nickName,
mobile: this.form.mobile, mobile: this.form.mobile,
email: this.form.email, email: this.form.email,