解决微信小程序首页空白问题。
This commit is contained in:
@@ -113,8 +113,17 @@
|
||||
cdbRef = this.$refs.udb
|
||||
},
|
||||
async onShow() {
|
||||
this.keyword = getApp().globalData.searchText
|
||||
getApp().globalData.searchText = ''
|
||||
try {
|
||||
const app = getApp({ allowDefault: true });
|
||||
if (app && app.globalData) {
|
||||
this.keyword = app.globalData.searchText;
|
||||
app.globalData.searchText = '';
|
||||
} else {
|
||||
this.keyword = '';
|
||||
}
|
||||
} catch (e) {
|
||||
this.keyword = '';
|
||||
}
|
||||
//这里仅演示如何,在onShow生命周期获取设备位置,并在设备或者应用没有权限时自动引导。设置完毕自动重新获取。
|
||||
//你可以基于他做自己的业务,比如:根据距离由近到远排序列表数据等
|
||||
// uni.showLoading({
|
||||
|
||||
Reference in New Issue
Block a user