diff --git a/.env b/.env index 4ac51d4d..0abda08d 100644 --- a/.env +++ b/.env @@ -8,6 +8,9 @@ SHOPRO_BASE_URL=http://api-dashboard.yudao.iocoder.cn SHOPRO_DEV_BASE_URL=http://127.0.0.1:48080 ### SHOPRO_DEV_BASE_URL = http://yunai.natapp1.cc +# H5访问域名 +SHOPRO_H5_URL=http://test.yudao.iocoder.cn + # 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务 SHOPRO_UPLOAD_TYPE=server diff --git a/sheep/config/index.js b/sheep/config/index.js index 9aa4f523..331d5412 100644 --- a/sheep/config/index.js +++ b/sheep/config/index.js @@ -13,6 +13,7 @@ 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 const websocketPath = import.meta.env.SHOPRO_WEBSOCKET_PATH; +export const h5Url = import.meta.env.SHOPRO_H5_URL; export default { baseUrl, @@ -20,4 +21,5 @@ export default { staticUrl, tenantId, websocketPath, + h5Url, }; diff --git a/sheep/store/app.js b/sheep/store/app.js index 70cea0ab..1e6ad1df 100644 --- a/sheep/store/app.js +++ b/sheep/store/app.js @@ -4,6 +4,7 @@ import $platform from '@/sheep/platform'; import $router from '@/sheep/router'; import user from './user'; import sys from './sys'; +import { h5Url } from '@/sheep/config'; const app = defineStore({ id: 'app', @@ -72,7 +73,7 @@ const app = defineStore({ this.platform = { share: { methods: ['forward', 'poster', 'link'], - linkAddress: 'http://127.0.0.1:3000', // TODO 芋艿:可以考虑改到 .env 那 + linkAddress: h5Url, // 改到 .env 配置 posterInfo: { user_bg: '/static/img/shop/config/user-poster-bg.png', goods_bg: '/static/img/shop/config/goods-poster-bg.png',