diff --git a/build/proxy.ts b/build/proxy.ts index 71c7460..d11829d 100644 --- a/build/proxy.ts +++ b/build/proxy.ts @@ -1,5 +1,21 @@ import type { ProxyOptions } from 'vite' +/** 不同请求服务的环境配置 */ +export const proxyConfig: Record = { + dev: { + url: 'http://localhost:3000', + urlPattern: '/url-pattern', + }, + test: { + url: 'http://localhost:8080', + urlPattern: '/url-pattern', + }, + prod: { + url: 'http://localhost:8080', + urlPattern: '/url-pattern', + }, +} + /** * @description: 生成vite代理字段 * @param {*} envConfig - 环境变量配置 diff --git a/src/config/env.ts b/src/config/env.ts deleted file mode 100644 index eb8e359..0000000 --- a/src/config/env.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** 不同请求服务的环境配置 */ -export const proxyConfig: Record = { - dev: { - url: 'http://localhost:3000', - urlPattern: '/url-pattern', - }, - test: { - url: 'http://localhost:8080', - urlPattern: '/url-pattern', - }, - prod: { - url: 'http://localhost:8080', - urlPattern: '/url-pattern', - }, -} diff --git a/src/config/index.ts b/src/config/index.ts deleted file mode 100644 index b0f2905..0000000 --- a/src/config/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './sdk' -export * from './env' -export * from './system' diff --git a/src/config/sdk.ts b/src/config/sdk.ts deleted file mode 100644 index 8b2ecd7..0000000 --- a/src/config/sdk.ts +++ /dev/null @@ -1,5 +0,0 @@ -/* 高德地图开发SDk */ -export const GAODE_MAP_SDK_URL = 'https://webapi.amap.com/maps?v=2.0&key=85e62187c6f8e51c797c87b1f36f787a' -/* 百度地图开发SDk */ -export const BAIDU_MAP_SDK_URL - = 'https://api.map.baidu.com/getscript?v=3.0&ak=MwqQwPxa5ipusyNmH1WT62y5DKhYxIgb&services=&t=20220816154130' diff --git a/src/config/system.ts b/src/config/system.ts deleted file mode 100644 index 3a9d0ae..0000000 --- a/src/config/system.ts +++ /dev/null @@ -1,11 +0,0 @@ -/** 本地存储前缀 */ -export const STORAGE_PREFIX = '' - -/* 开启本地存储加密 */ -export const STORAGE_ENCRYPT = false - -/** 本地存储加密密钥 */ -export const STORAGE_ENCRYPT_SECRET = '__CryptoJS_Secret__' - -/** 本地存储缓存时长 */ -export const STORAGE_DEFAULT_CACHE_TIME = 60 * 60 * 24 * 7 diff --git a/src/service/http/index.ts b/src/service/http/index.ts index c84f796..b6d82ec 100644 --- a/src/service/http/index.ts +++ b/src/service/http/index.ts @@ -1,5 +1,5 @@ import { createAlovaInstance } from './alova' -import { proxyConfig } from '@/config' +import { proxyConfig } from '@/../build/proxy' const { url, urlPattern } = proxyConfig[import.meta.env.MODE] diff --git a/src/utils/crypto.ts b/src/utils/crypto.ts deleted file mode 100644 index 8c1329a..0000000 --- a/src/utils/crypto.ts +++ /dev/null @@ -1,36 +0,0 @@ -import CryptoJS from 'crypto-js' -import { isObject } from './is' -import { STORAGE_ENCRYPT, STORAGE_ENCRYPT_SECRET } from '@/config' - -/** - * 加密数据 - * @param data - 数据 - */ -export function encrypto(data: any) { - let newData = data - - if (isObject(data)) - newData = JSON.stringify(data) - - if (!STORAGE_ENCRYPT) - return newData - - return CryptoJS.AES.encrypt(newData, STORAGE_ENCRYPT_SECRET).toString() -} - -/** - * 解密数据 - * @param cipherText - 密文 - */ -export function decrypto(cipherText: string) { - if (!STORAGE_ENCRYPT) - return JSON.parse(cipherText) - - const bytes = CryptoJS.AES.decrypt(cipherText, STORAGE_ENCRYPT_SECRET) - const originalText = bytes.toString(CryptoJS.enc.Utf8) - - if (originalText) - return JSON.parse(originalText) - - return null -} diff --git a/src/utils/storage.ts b/src/utils/storage.ts index 4486ff9..83f8574 100644 --- a/src/utils/storage.ts +++ b/src/utils/storage.ts @@ -1,7 +1,4 @@ -import { decrypto, encrypto } from './crypto' - -// 读取缓存前缀 -import { STORAGE_DEFAULT_CACHE_TIME, STORAGE_PREFIX } from '@/config' +const STORAGE_PREFIX = 'nova_' interface StorageData { value: T @@ -13,12 +10,12 @@ interface StorageData { function createLocalStorage() { // 默认缓存期限为7天 - function set(key: K, value: T[K], expire: number = STORAGE_DEFAULT_CACHE_TIME) { + function set(key: K, value: T[K], expire: number = 60 * 60 * 24 * 7) { const storageData: StorageData = { value, expire: new Date().getTime() + expire * 1000, } - const json = encrypto(storageData) + const json = JSON.stringify(storageData) window.localStorage.setItem(`${STORAGE_PREFIX}${String(key)}`, json) } @@ -27,13 +24,7 @@ function createLocalStorage() { if (!json) return null - let storageData: StorageData | null = null - try { - storageData = decrypto(json) - } - catch { - // 防止解析失败 - } + const storageData: StorageData | null = JSON.parse(json) if (storageData) { const { value, expire } = storageData @@ -64,7 +55,7 @@ function createLocalStorage() { function createSessionStorage() { function set(key: K, value: T[K]) { - const json = encrypto(value) + const json = JSON.stringify(value) window.sessionStorage.setItem(`${STORAGE_PREFIX}${String(key)}`, json) } function get(key: K) { @@ -72,13 +63,7 @@ function createSessionStorage() { if (!json) return null - let storageData: T[K] | null = null - try { - storageData = decrypto(json) - } - catch { - // 防止解析失败 - } + const storageData: T[K] | null = JSON.parse(json) if (storageData) return storageData diff --git a/src/views/plugin/map/components/AMap.vue b/src/views/plugin/map/components/AMap.vue index 8eb193b..0411492 100644 --- a/src/views/plugin/map/components/AMap.vue +++ b/src/views/plugin/map/components/AMap.vue @@ -1,7 +1,5 @@