feat(util): 添加隐藏微信小程序首页按钮功能
添加 hideHomeButton 方法用于在微信小程序环境中隐藏首页按钮,提升用户体验
This commit is contained in:
@@ -843,6 +843,15 @@ export default {
|
|||||||
uni.navigateBack();
|
uni.navigateBack();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* 隐藏“返回首页/小房子”按钮
|
||||||
|
* 这个函数,用到页面show, onshow 的生命周期时
|
||||||
|
*/
|
||||||
|
hideHomeButton() {
|
||||||
|
// #ifdef MP-WEIXIN
|
||||||
|
wx.hideHomeButton();
|
||||||
|
// #endif
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param val 转化时间字符串 (转化时分秒)
|
* @param val 转化时间字符串 (转化时分秒)
|
||||||
|
|||||||
Reference in New Issue
Block a user