chore: 移除愈心魔方页调试日志,版本 202608282

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
jackyu66git
2026-08-25 04:21:52 +08:00
co-authored by Cursor
parent a14285d77b
commit 6a4ba4db0e
2 changed files with 4 additions and 12 deletions
+2 -10
View File
@@ -81,8 +81,8 @@ const h5Url = computed(
`${YXG_H5_BASE}?mp=1&nh=1&sbh=4&v=${YXG_H5_VERSION}#wechat_redirect`,
)
function onWebLoad(e) {
console.log('[yxg-magic] web-view load', e?.detail || e)
function onWebLoad() {
// web-view loaded
}
function onWebError(e) {
@@ -93,14 +93,6 @@ function onWebError(e) {
duration: 3000,
})
}
console.log('[yxg-magic] outer nav + webview', {
headH,
webviewH,
logoW,
logoH,
logoSrc: YXG_MP_LOGO_URL,
})
</script>
<style>
+2 -2
View File
@@ -2,7 +2,7 @@
import { LOCAL_H5_HOST, USE_LOCAL_H5 } from './yxgConfig.local.js'
const PROD_BASE = 'https://h5.yuxingu.com.cn/psy/'
const PROD_VERSION = '202608281'
const PROD_VERSION = '202608282'
/** 愈心魔方顶栏 logo(小程序包内 static,不请求外网) */
export const YXG_MP_LOGO_URL = '/static/n-main/yxg-brand-logo.png'
@@ -11,6 +11,6 @@ const useLocalH5 = isDev && USE_LOCAL_H5
export const YXG_H5_VERSION = useLocalH5 ? 'local' : PROD_VERSION
export const YXG_H5_BASE = useLocalH5 ? `http://${LOCAL_H5_HOST}/psy/` : PROD_BASE
/** H5 内嵌场景远程 logo与小程序顶栏无关 */
/** H5 内嵌场景远程 logo历史 cover 方案遗留,小程序顶栏用 YXG_MP_LOGO_URL */
export const YXG_H5_LOGO_URL = 'https://miniapp.yuxingu.com.cn/yxg-mp/logo.png'
export const YXG_H5_HOME_URL = `${YXG_H5_BASE}?mp=1&v=${YXG_H5_VERSION}`