分类优化
parent
2d16bdae38
commit
7b39c49256
|
|
@ -8,6 +8,7 @@
|
|||
7. 购物车新增商品展示
|
||||
8. 问答支持评论和点赞
|
||||
9. 客服和快捷导航优化
|
||||
10. 商品详情分享和收藏优化
|
||||
|
||||
|
||||
## v3.0.3(2023-09-18)
|
||||
|
|
|
|||
|
|
@ -583,16 +583,20 @@
|
|||
if (this.is_first == 1 && this.category_show_level == 0) {
|
||||
this.get_cart_data();
|
||||
}
|
||||
}
|
||||
|
||||
// 计算更多分类弹窗的高度、由于页面元素渲染异步问题,这里加延时执行
|
||||
if(this.is_first == 1) {
|
||||
var self = this;
|
||||
setTimeout(function() {
|
||||
self.search_height_computer();
|
||||
}, 100);
|
||||
}
|
||||
|
||||
// 是否首次记录
|
||||
this.setData({
|
||||
is_first: 0,
|
||||
});
|
||||
|
||||
// 计算更多分类弹窗的高度
|
||||
this.search_height_computer();
|
||||
|
||||
} else {
|
||||
this.setData({
|
||||
data_list_loding_status: 2,
|
||||
|
|
|
|||
Loading…
Reference in New Issue