|
@@ -451,7 +451,7 @@ var vNode = {
|
|
|
// that.curMonthCountTop.list = that.formatterWinData(res.data.project_buyerclass_count,'count')
|
|
|
|
|
|
var pro_count_list = res.data.project_buyerclass_count.filter(function (item, index) {
|
|
|
- return item['buyerclass'] != '其它'
|
|
|
+ return (item['buyerclass'] != '其它' && item['count']!=0)
|
|
|
})
|
|
|
that.curMonthCountTop.list = that.formatterWinData(pro_count_list,'count')
|
|
|
that.isShow.show_7 = true;
|
|
@@ -464,7 +464,7 @@ var vNode = {
|
|
|
// that.curMonthScaleTop.list = that.formatterWinData(data,'scale')
|
|
|
var data = res.data.project_buyerclass_bidamount;
|
|
|
var pro_bidamount_list = data.filter(function (item, index) {
|
|
|
- return item['buyerclass'] != '其它'
|
|
|
+ return (item['buyerclass'] != '其它' && item['bidamount']!=0)
|
|
|
})
|
|
|
that.curMonthScaleTop.list = that.formatterWinData(pro_bidamount_list,'scale')
|
|
|
that.isShow.show_8 = true;
|
|
@@ -477,7 +477,7 @@ var vNode = {
|
|
|
// that.averageScaleTop.list = that.formatterWinData(d,'average')
|
|
|
var d = res.data.project_buyerclass_average_bidamount;
|
|
|
var pro_average_list = d.filter(function (item, index) {
|
|
|
- return item['buyerclass'] != '其它'
|
|
|
+ return (item['buyerclass'] != '其它' && item['average']!=0)
|
|
|
})
|
|
|
that.averageScaleTop.list = that.formatterWinData(pro_average_list,'average')
|
|
|
that.isShow.show_9 = true;
|