diff --git a/.env b/.env
index 0c3c73f7..605c0167 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://127.0.0.1:3000
+
# 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持 S3 服务
SHOPRO_UPLOAD_TYPE=server
diff --git a/App.vue b/App.vue
deleted file mode 100644
index 9053c4eb..00000000
--- a/App.vue
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
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 36f767f1..90c173ed 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',