小程序首页第一次打开时图片不显示bug修复

This commit is contained in:
邓洁
2023-02-05 17:59:47 +08:00
parent 8db95277dd
commit 0e6d4f02a2
12 changed files with 33 additions and 34 deletions

View File

@@ -7,7 +7,7 @@
</u-image>
<view class="bgContent">
<view>
<u-image :src="item.cover" width="346rpx" height="320rpx" :lazy-load="true">
<u-image :src="imgUrl+item.cover" width="346rpx" height="320rpx" :lazy-load="true">
</u-image>
<view class="img_tag">{{item.cate_name}}</view>
</view>
@@ -43,10 +43,12 @@
pageNum: 1
},
queryTitle: null,
imgUrl: null,
productList: []
}
},
onLoad(options) {
this.imgUrl = uni.getStorageSync('img_url')
this.queryTitle = options.title
this.goSearch()
},