diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..9f1369b --- /dev/null +++ b/.eslintrc @@ -0,0 +1,3 @@ +{ + "extends": "@chansee97/eslint-config-vue" +} diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index d523e70..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - extends: '@chansee97/eslint-config-vue', -} diff --git a/src/config/system.ts b/src/config/system.ts index 57b5424..3a9d0ae 100644 --- a/src/config/system.ts +++ b/src/config/system.ts @@ -1,6 +1,9 @@ /** 本地存储前缀 */ export const STORAGE_PREFIX = '' +/* 开启本地存储加密 */ +export const STORAGE_ENCRYPT = false + /** 本地存储加密密钥 */ export const STORAGE_ENCRYPT_SECRET = '__CryptoJS_Secret__' diff --git a/src/utils/crypto.ts b/src/utils/crypto.ts index 80540e6..8c1329a 100644 --- a/src/utils/crypto.ts +++ b/src/utils/crypto.ts @@ -1,8 +1,6 @@ import CryptoJS from 'crypto-js' import { isObject } from './is' -import { STORAGE_ENCRYPT_SECRET } from '@/config' - -const { VITE_STORAGE_ENCRYPT } = import.meta.env +import { STORAGE_ENCRYPT, STORAGE_ENCRYPT_SECRET } from '@/config' /** * 加密数据 @@ -14,7 +12,7 @@ export function encrypto(data: any) { if (isObject(data)) newData = JSON.stringify(data) - if (VITE_STORAGE_ENCRYPT) + if (!STORAGE_ENCRYPT) return newData return CryptoJS.AES.encrypt(newData, STORAGE_ENCRYPT_SECRET).toString() @@ -25,7 +23,7 @@ export function encrypto(data: any) { * @param cipherText - 密文 */ export function decrypto(cipherText: string) { - if (!VITE_STORAGE_ENCRYPT) + if (!STORAGE_ENCRYPT) return JSON.parse(cipherText) const bytes = CryptoJS.AES.decrypt(cipherText, STORAGE_ENCRYPT_SECRET) diff --git a/src/utils/storage.ts b/src/utils/storage.ts index b9cf0db..4486ff9 100644 --- a/src/utils/storage.ts +++ b/src/utils/storage.ts @@ -1,4 +1,5 @@ import { decrypto, encrypto } from './crypto' + // 读取缓存前缀 import { STORAGE_DEFAULT_CACHE_TIME, STORAGE_PREFIX } from '@/config' diff --git a/src/views/login/components/Login/index.vue b/src/views/login/components/Login/index.vue index b9f48f4..3eb741d 100644 --- a/src/views/login/components/Login/index.vue +++ b/src/views/login/components/Login/index.vue @@ -65,34 +65,14 @@ checkUserAccount()