密码混淆

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,6 +1,6 @@
import http from '@/utils/http';
import { AreaCode, SendCodeType } from '@/types/common';
import { encodePhone } from '@/utils/transform';
import { encodePhone, encryptPwd } from '@/utils/transform';
export enum CheckResult {
Login = 0,
@@ -20,7 +20,7 @@ export async function signIn(areacode: AreaCode, phone: string, password: string
'/sign/in',
{
phone: encodePhone(areacode, phone),
password,
password: encryptPwd(password),
},
);
if (!ok || !data || !data.token) {
@@ -34,7 +34,7 @@ export async function signUp(areacode: AreaCode, phone: string, password: string
'/sign/upwi',
{
phone: encodePhone(areacode, phone),
password,
password: encryptPwd(password),
inviter,
code,
},
@@ -50,7 +50,7 @@ export async function reset(areacode: AreaCode, phone: string, password: string,
'/sign/forget',
{
phone: encodePhone(areacode, phone),
password,
password: encryptPwd(password),
code,
},
);

View File

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

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);