密码混淆

This commit is contained in:
saplf
2019-09-06 23:21:12 +08:00
parent 3c2edc1967
commit b731ee054c
6 changed files with 45 additions and 10 deletions

View File

@@ -1,9 +1,10 @@
import http from '@/utils/http';
import { encryptPwd } from '@/utils/transform';
export async function changeLgpwd(newPassword: string, password?: string) {
export async function changeLgpwd(newPassword: string, password: string) {
const { ok, msg } = await http.post('/user/chpasswd', {
password,
newPassword,
password: encryptPwd(password),
newPassword: encryptPwd(newPassword),
});
if (ok) return;
throw Error(msg);