From 098089f014bdda9145cdfc856acebd783fe3b21c Mon Sep 17 00:00:00 2001 From: Ordinary Date: Thu, 11 Jul 2024 23:29:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 2 +- sheep/config/index.js | 2 ++ sheep/request/index.js | 4 +--- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.env b/.env index bdffd88c..5ca9025c 100644 --- a/.env +++ b/.env @@ -21,4 +21,4 @@ SHOPRO_STATIC_URL = https://file.sheepjs.com SHOPRO_MPLIVE_ON = 0 # 多租户配置 -TENANT_ID = 1 +SHOPRO_TENANT_ID = 1 diff --git a/sheep/config/index.js b/sheep/config/index.js index 209a9dcd..90f21c12 100644 --- a/sheep/config/index.js +++ b/sheep/config/index.js @@ -11,9 +11,11 @@ console.log(`[芋道商城 ${version}] http://doc.iocoder.cn`); export const apiPath = import.meta.env.SHOPRO_API_PATH; export const staticUrl = import.meta.env.SHOPRO_STATIC_URL; +export const tenantId = import.meta.env.SHOPRO_TENANT_ID; export default { baseUrl, apiPath, staticUrl, + tenantId }; diff --git a/sheep/request/index.js b/sheep/request/index.js index 9fe8e75f..0f42a169 100644 --- a/sheep/request/index.js +++ b/sheep/request/index.js @@ -4,7 +4,7 @@ */ import Request from 'luch-request'; -import { baseUrl, apiPath } from '@/sheep/config'; +import { baseUrl, apiPath, tenantId } from '@/sheep/config'; import $store from '@/sheep/store'; import $platform from '@/sheep/platform'; import { @@ -12,8 +12,6 @@ import { } from '@/sheep/hooks/useModal'; import AuthUtil from '@/sheep/api/member/auth'; -const tenantId = import.meta.env.TENANT_ID; - const options = { // 显示操作成功消息 默认不显示 showSuccess: false,