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,