From ac3b3adec77e1af020dab4dfd4ceb02b894d8745 Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Mon, 10 Apr 2023 10:36:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=20VITE=5FUSE=5FMOCK?= =?UTF-8?q?=20=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 3 +++ .env.production | 5 +++++ src/types/env.d.ts | 1 + src/utils/env.ts | 12 +++++++++++- src/utils/http/index.ts | 6 ++++-- 5 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.env.development b/.env.development index 79be671..a1198d3 100644 --- a/.env.development +++ b/.env.development @@ -1,6 +1,9 @@ # 运行环境 VITE_ENV = development +# 是否使用模拟数据 +VITE_USE_MOCK = true + VITE_PORT = 3000 # BASE_URL diff --git a/.env.production b/.env.production index bfcff09..a170745 100644 --- a/.env.production +++ b/.env.production @@ -1,7 +1,12 @@ # 运行环境 VITE_ENV = production +# 是否使用模拟数据 +VITE_USE_MOCK = true + # api域名 VITE_BASE_URL = /api/v1 + + # 上传域名 VITE_UPLOAD_URL = /upload diff --git a/src/types/env.d.ts b/src/types/env.d.ts index b8473b2..f3023fc 100644 --- a/src/types/env.d.ts +++ b/src/types/env.d.ts @@ -14,6 +14,7 @@ interface ImportMetaEnv { readonly VITE_UPLOAD_URL: string; readonly VITE_APP_CACHE_PREFIX: string; readonly VITE_PORT: number; + readonly VITE_USE_MOCK: string; } interface ImportMeta { diff --git a/src/utils/env.ts b/src/utils/env.ts index 9a2c873..4e35efa 100644 --- a/src/utils/env.ts +++ b/src/utils/env.ts @@ -34,7 +34,8 @@ export function getEnvMode(): string { * @example: */ export function getEnvValue(key: keyof ImportMetaEnv): T { - return import.meta.env[key] as unknown as T; + const envValue = import.meta.env[key]; + return (envValue === 'true' ? true : envValue === 'false' ? false : envValue) as unknown as T; } /** @@ -55,6 +56,15 @@ export function isProdMode(): boolean { return getEnvMode() === prodMode; } +/** + * @description: Whether to use mock data + * @returns: + * @example: + */ +export function isUseMock(): boolean { + return getEnvValue('VITE_USE_MOCK'); +} + /** * @description: Get environment VITE_BASE_URL value * @returns: diff --git a/src/utils/http/index.ts b/src/utils/http/index.ts index 097c8d3..4ff0e16 100644 --- a/src/utils/http/index.ts +++ b/src/utils/http/index.ts @@ -1,6 +1,6 @@ import { createAlova } from 'alova'; import AdapterUniapp from '@alova/adapter-uniapp'; -import { getBaseUrl, isDevMode } from '@/utils/env'; +import { getBaseUrl, isUseMock } from '@/utils/env'; import { mockAdapter } from '@/mock'; import { assign } from 'lodash-es'; import { useAuthStore } from '@/state/modules/auth'; @@ -23,7 +23,9 @@ const HEADER = { const alovaInstance = createAlova({ baseURL: BASE_URL, ...AdapterUniapp({ - mockRequest: isDevMode() ? mockAdapter : undefined, + /* #ifndef APP-PLUS */ + mockRequest: isUseMock() ? mockAdapter : undefined, // APP 平台无法使用mock + /* #endif */ }), timeout: 5000, beforeRequest: (method) => {