标准版5.2中,使用了商品分类的第三种样式后,会出现从其它页面再点“分类”后商品不自动加载的问题,我找了一下代码,
goods_cate.vue中
if (status == 3) {
if (this.isLogin) {
this.$refs.classThree.getCartNum();
this.$refs.classThree.getCartList(1);
this.$refs.classThree.tempArr = [];
this.$refs.classThree.loadend = false;
this.$refs.classThree.page = 1;
// this.$refs.classThree.productslist();
}
// this.$refs.classThree.getAllCategory()
}
这里 // this.$refs.classThree.getAllCategory() 是被注释掉了,我取消注释后目前是正常的,但是想请教一下,会有问题吗?