fix: 愈心魔方 onShow 清空原生导航标题(202608281)
配合 H5 首屏清 title,减少 web-view 加载时黑色「愈心谷」闪现。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -23,8 +23,21 @@
|
||||
|
||||
<script setup>
|
||||
import { computed } from 'vue'
|
||||
import { onShow } from '@dcloudio/uni-app'
|
||||
import { YXG_H5_BASE, YXG_H5_VERSION, YXG_MP_LOGO_URL } from '@/util/yxgConfig.js'
|
||||
|
||||
function clearNavTitle() {
|
||||
// #ifdef MP-WEIXIN
|
||||
uni.setNavigationBarTitle({ title: '\u200b' })
|
||||
// #endif
|
||||
}
|
||||
|
||||
onShow(() => {
|
||||
clearNavTitle()
|
||||
})
|
||||
|
||||
clearNavTitle()
|
||||
|
||||
function readWindow() {
|
||||
// #ifdef MP-WEIXIN
|
||||
if (typeof wx !== 'undefined' && wx.getWindowInfo) {
|
||||
|
||||
Reference in New Issue
Block a user