fix: 解决配置不生效的问题。

pull/57/head
Ordinary 2024-07-11 23:29:18 +08:00
parent b80ffb8f8e
commit 098089f014
3 changed files with 4 additions and 4 deletions

2
.env
View File

@ -21,4 +21,4 @@ SHOPRO_STATIC_URL = https://file.sheepjs.com
SHOPRO_MPLIVE_ON = 0
# 多租户配置
TENANT_ID = 1
SHOPRO_TENANT_ID = 1

View File

@ -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
};

View File

@ -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,