|
@@ -44,7 +44,8 @@ var productList = new Vue({
|
|
|
isProductScreen:false,
|
|
|
isActiviChecked:false,
|
|
|
isNewsChecked:false,
|
|
|
- isShowAllBrands:false
|
|
|
+ isShowAllBrands:false,
|
|
|
+ isAllcheckedBrand:false
|
|
|
},
|
|
|
filters: {
|
|
|
NumFormat:function(value) {
|
|
@@ -169,16 +170,30 @@ var productList = new Vue({
|
|
|
'&bpn=' + brand.id + '&pro=' + this.params.promotionFlag +
|
|
|
'&newg='+ this.params.newFlag;
|
|
|
},
|
|
|
+ choiceBrandAllHref:function(){// PC全部品牌跳转链接
|
|
|
+ window.location.href = '/product/list.html?keyword=' + encodeURIComponent(this.params.keyword) +
|
|
|
+ '&bpn=&pro=' + this.params.promotionFlag +
|
|
|
+ '&newg='+ this.params.newFlag;
|
|
|
+ },
|
|
|
choiceBrand:function(brand,index){// 选择品牌
|
|
|
var _self = this;
|
|
|
- brand.isChecked = !brand.isChecked
|
|
|
+ brand.isChecked = !brand.isChecked;
|
|
|
if (brand.isChecked) {
|
|
|
- _self.checkedBrandList.push(brand.id)
|
|
|
+ _self.checkedBrandList.push(brand.id);
|
|
|
} else {
|
|
|
- _self.checkedBrandList.splice(index, 1)
|
|
|
+ _self.checkedBrandList.splice(index, 1);
|
|
|
}
|
|
|
- _self.checkedBrandLength = _self.checkedBrandList.length
|
|
|
- _self.params.brandIds = this.checkedBrandList.join(',')
|
|
|
+ _self.isAllcheckedBrand = false;
|
|
|
+ _self.checkedBrandLength = _self.checkedBrandList.length;
|
|
|
+ _self.params.brandIds = this.checkedBrandList.join(',');
|
|
|
+ },
|
|
|
+ choiceBrandAll:function(){
|
|
|
+ // 点击选择全部品牌
|
|
|
+ this.isAllcheckedBrand = true;
|
|
|
+ this.params.brandIds = '';
|
|
|
+ this.brandLists.forEach(function(el){
|
|
|
+ el.isChecked = false;
|
|
|
+ });
|
|
|
},
|
|
|
showMoreItem:function(){// 点击更多品牌
|
|
|
this.isShowAllBrands = !this.isShowAllBrands;
|
|
@@ -266,6 +281,7 @@ var productList = new Vue({
|
|
|
if(this.hrefBrandId){
|
|
|
this.params.brandIds = this.hrefBrandId +',';
|
|
|
}
|
|
|
+ console.log('hrefBrandId',this.hrefBrandId)
|
|
|
if(this.params.promotionFlag == 1){
|
|
|
this.isActiviChecked = true;
|
|
|
}else{
|