|
@@ -321,6 +321,7 @@ var vm = new Vue({
|
|
|
},
|
|
|
tagFilterChange: function (tagList) {
|
|
|
this.filterState.tags = tagList
|
|
|
+ this.clearSelectState()
|
|
|
this.doQuery()
|
|
|
},
|
|
|
dateTimeFilterChange: function (t) {
|
|
@@ -337,6 +338,7 @@ var vm = new Vue({
|
|
|
} else {
|
|
|
this.filterState.selectTime = arr.join('_')
|
|
|
}
|
|
|
+ this.clearSelectState()
|
|
|
this.doQuery()
|
|
|
},
|
|
|
buyerClassFilterChange: function (buyerclass) {
|
|
@@ -347,6 +349,7 @@ var vm = new Vue({
|
|
|
buyerclassArr = buyerclassArr.concat(buyerclass[key])
|
|
|
}
|
|
|
this.filterState.buyerclass = buyerclassArr
|
|
|
+ this.clearSelectState()
|
|
|
this.doQuery()
|
|
|
} else {
|
|
|
this.$refs.buyerClassFilter.setState()
|
|
@@ -357,6 +360,7 @@ var vm = new Vue({
|
|
|
},
|
|
|
otherFilterChange: function (t) {
|
|
|
if (this.power) {
|
|
|
+ this.clearSelectState()
|
|
|
this.doQuery()
|
|
|
} else {
|
|
|
this.filterState.buyerPhone = 0
|
|
@@ -428,6 +432,9 @@ var vm = new Vue({
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ clearSelectState: function () {
|
|
|
+ selectDataIds = []
|
|
|
+ },
|
|
|
unStarThis: function (item) {
|
|
|
baiduEvent('列表页标讯收藏-星标') // 收藏按钮百度统计
|
|
|
var _this = this
|