...
|
...
|
@@ -65,6 +65,7 @@ |
|
|
},
|
|
|
methods: {
|
|
|
clickProduct(item, index) {
|
|
|
if (this.$isYohoBuy) {
|
|
|
this.$yas.event('YB_GOODS_LIST_DT', {
|
|
|
TYPE_ID: 13,
|
|
|
ENT_ID: this.query,
|
...
|
...
|
@@ -72,6 +73,7 @@ |
|
|
PRD_ID: item.product_id,
|
|
|
SORT_TYPE: this.orderType
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
search: function() {
|
|
|
const nextPage = this.page + 1;
|
...
|
...
|
@@ -102,6 +104,8 @@ |
|
|
if (!this.filterConfig) {
|
|
|
this.filterConfig = res.data.filter;
|
|
|
}
|
|
|
if (this.$isYohoBuy) {
|
|
|
setTimeout(() => {
|
|
|
this.$yas.eventData('YB_GOODS_LIST', {
|
|
|
TYPE_ID: 13,
|
|
|
ENT_ID: this.query,
|
...
|
...
|
@@ -111,6 +115,8 @@ |
|
|
}).join(','),
|
|
|
SORT_TYPE: this.orderType,
|
|
|
});
|
|
|
}, 500);
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
.fail(() => {
|
...
|
...
|
@@ -142,7 +148,6 @@ |
|
|
created: function() {
|
|
|
const self = this;
|
|
|
|
|
|
|
|
|
bus.$on('list.paging', function() {
|
|
|
self.search();
|
|
|
});
|
...
|
...
|
|