fix: localstorage encode error

This commit is contained in:
Coffee-crocodile 2023-05-29 09:36:14 +08:00
parent 639a75adfa
commit adb1e5554c
6 changed files with 19 additions and 59 deletions

3
.eslintrc Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "@chansee97/eslint-config-vue"
}

View File

@ -1,3 +0,0 @@
module.exports = {
extends: '@chansee97/eslint-config-vue',
}

View File

@ -1,6 +1,9 @@
/** 本地存储前缀 */ /** 本地存储前缀 */
export const STORAGE_PREFIX = '' export const STORAGE_PREFIX = ''
/* 开启本地存储加密 */
export const STORAGE_ENCRYPT = false
/** 本地存储加密密钥 */ /** 本地存储加密密钥 */
export const STORAGE_ENCRYPT_SECRET = '__CryptoJS_Secret__' export const STORAGE_ENCRYPT_SECRET = '__CryptoJS_Secret__'

View File

@ -1,8 +1,6 @@
import CryptoJS from 'crypto-js' import CryptoJS from 'crypto-js'
import { isObject } from './is' import { isObject } from './is'
import { STORAGE_ENCRYPT_SECRET } from '@/config' import { STORAGE_ENCRYPT, STORAGE_ENCRYPT_SECRET } from '@/config'
const { VITE_STORAGE_ENCRYPT } = import.meta.env
/** /**
* *
@ -14,7 +12,7 @@ export function encrypto(data: any) {
if (isObject(data)) if (isObject(data))
newData = JSON.stringify(data) newData = JSON.stringify(data)
if (VITE_STORAGE_ENCRYPT) if (!STORAGE_ENCRYPT)
return newData return newData
return CryptoJS.AES.encrypt(newData, STORAGE_ENCRYPT_SECRET).toString() return CryptoJS.AES.encrypt(newData, STORAGE_ENCRYPT_SECRET).toString()
@ -25,7 +23,7 @@ export function encrypto(data: any) {
* @param cipherText - * @param cipherText -
*/ */
export function decrypto(cipherText: string) { export function decrypto(cipherText: string) {
if (!VITE_STORAGE_ENCRYPT) if (!STORAGE_ENCRYPT)
return JSON.parse(cipherText) return JSON.parse(cipherText)
const bytes = CryptoJS.AES.decrypt(cipherText, STORAGE_ENCRYPT_SECRET) const bytes = CryptoJS.AES.decrypt(cipherText, STORAGE_ENCRYPT_SECRET)

View File

@ -1,4 +1,5 @@
import { decrypto, encrypto } from './crypto' import { decrypto, encrypto } from './crypto'
// 读取缓存前缀 // 读取缓存前缀
import { STORAGE_DEFAULT_CACHE_TIME, STORAGE_PREFIX } from '@/config' import { STORAGE_DEFAULT_CACHE_TIME, STORAGE_PREFIX } from '@/config'

View File

@ -65,34 +65,14 @@ checkUserAccount()
<template> <template>
<div> <div>
<n-h1 depth="3"> <n-h1 depth="3">
<SvgIcon <SvgIcon name="logo" :size="42" class="mr-1ch" />登录
name="logo"
:size="42"
class="mr-1ch"
/>
</n-h1> </n-h1>
<n-form <n-form ref="formRef" :rules="rules" :model="formValue" :show-label="false" size="large">
ref="formRef"
:rules="rules"
:model="formValue"
:show-label="false"
size="large"
>
<n-form-item path="account"> <n-form-item path="account">
<n-input <n-input v-model:value="formValue.account" clearable placeholder="输入账号" />
v-model:value="formValue.account"
clearable
placeholder="输入账号"
/>
</n-form-item> </n-form-item>
<n-form-item path="pwd"> <n-form-item path="pwd">
<n-input <n-input v-model:value="formValue.pwd" type="password" placeholder="输入密码" clearable show-password-on="click">
v-model:value="formValue.pwd"
type="password"
placeholder="输入密码"
clearable
show-password-on="click"
>
<template #password-invisible-icon> <template #password-invisible-icon>
<i-icon-park-outline-preview-close-one /> <i-icon-park-outline-preview-close-one />
</template> </template>
@ -103,45 +83,23 @@ checkUserAccount()
</n-form-item> </n-form-item>
<n-form-item path="code"> <n-form-item path="code">
<n-space align="center"> <n-space align="center">
<n-input <n-input v-model:value="formValue.code" clearable placeholder="输入验证码" :maxlength="4" />
v-model:value="formValue.code"
clearable
placeholder="输入验证码"
:maxlength="4"
/>
<div>验证码</div> <div>验证码</div>
</n-space> </n-space>
</n-form-item> </n-form-item>
<n-space <n-space vertical :size="20">
vertical
:size="20"
>
<div class="flex-y-center justify-between"> <div class="flex-y-center justify-between">
<n-checkbox v-model:checked="isRemember"> <n-checkbox v-model:checked="isRemember">
记住我 记住我
</n-checkbox> </n-checkbox>
<n-button <n-button type="primary" text @click="toOtherForm('resetPwd')">
type="primary"
text
@click="toOtherForm('resetPwd')"
>
忘记密码 忘记密码
</n-button> </n-button>
</div> </div>
<n-button <n-button block type="primary" size="large" :loading="authStore.loginLoading" @click="handleLogin">
block
type="primary"
size="large"
:loading="authStore.loginLoading"
@click="handleLogin"
>
登录 登录
</n-button> </n-button>
<n-button <n-button type="primary" text @click="toOtherForm('register')">
type="primary"
text
@click="toOtherForm('register')"
>
立即注册 立即注册
</n-button> </n-button>
</n-space> </n-space>