feat: 愈心魔方原生 cover 顶栏 logo 与本地 H5 联调

WebView 全屏 + cover-image 网络 logo;开发模式自动指向本机 Vite,同步 H5 品牌 logo。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
jackyu66git
2026-08-25 01:38:33 +08:00
co-authored by Cursor
parent 605be2e480
commit cfe13cbecf
5 changed files with 84 additions and 20 deletions
+13 -2
View File
@@ -1,4 +1,15 @@
/** 愈心魔方 H5digital-psychology user-h5 */
export const YXG_H5_VERSION = '202608253'
export const YXG_H5_BASE = 'https://h5.yuxingu.com.cn/psy/'
import { LOCAL_H5_HOST } from './yxgConfig.local.js'
const PROD_BASE = 'https://h5.yuxingu.com.cn/psy/'
const PROD_VERSION = '202608256'
const isDev = import.meta.env.DEV
export const YXG_H5_VERSION = isDev ? 'local' : PROD_VERSION
export const YXG_H5_BASE = isDev ? `http://${LOCAL_H5_HOST}/psy/` : PROD_BASE
/** cover-image 仅支持网络图/临时路径,不能用 /static */
export const YXG_H5_LOGO_URL = isDev
? `http://${LOCAL_H5_HOST}/psy/logo.png`
: `${PROD_BASE}logo.png`
export const YXG_H5_HOME_URL = `${YXG_H5_BASE}?mp=1&v=${YXG_H5_VERSION}`
+5
View File
@@ -0,0 +1,5 @@
/**
* 本地联调 H5(仅开发编译生效,发行仍走线上域名)
* 改成你电脑局域网 IP — 运行 digital-psychology 的 `npm run dev:mp` 会打印
*/
export const LOCAL_H5_HOST = '192.168.100.16:5173'