|
@@ -86,7 +86,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 地区分布 -->
|
|
|
- <div class="sub-section area-scatter" v-if="sections.areaScatter.dataAlready">
|
|
|
+ <div class="sub-section area-scatter" v-if="sections.areaScatter.dataAlready && oneAreaFilter">
|
|
|
<div class="sub-section-header">
|
|
|
<div class="sub-section-title">地区分布</div>
|
|
|
</div>
|
|
@@ -406,6 +406,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
+ oneAreaFilter () {
|
|
|
+ const area = this.reportFilters.area
|
|
|
+ const showArea = area && (Object.keys(area).length > 1 || Object.keys(area).length === 0)
|
|
|
+ return showArea
|
|
|
+ },
|
|
|
buyerclassSectionShow () {
|
|
|
const winnerState = this.sections.buyerclass
|
|
|
return winnerState.dataAlready && winnerState.projectCountTop3 && winnerState.projectAmountTop3
|
|
@@ -447,14 +452,10 @@ export default {
|
|
|
const flagArr = [
|
|
|
0, // 筛选条件
|
|
|
// 1, // 市场概括与时间分布
|
|
|
- 2, // 项目规模分布
|
|
|
- 3, // 项目规模Top10
|
|
|
+ 2, // 项目规模Top10
|
|
|
+ 3, // 项目规模分布/地区规模分布/客户分布/地区分布及客户分布&Top3(table+chart)
|
|
|
4, // 细分市场
|
|
|
- 5, // 采购单位
|
|
|
- 6, // 中标单位
|
|
|
- 7, // 地区规模分布
|
|
|
- 8, // 客户分布
|
|
|
- 9 // 地区分布及客户分布Top3
|
|
|
+ 5 // 采购单位/中标单位&Top3(table+chart)
|
|
|
]
|
|
|
|
|
|
flagArr.forEach(this.getReport)
|
|
@@ -495,29 +496,26 @@ export default {
|
|
|
// 时间分布
|
|
|
this.sortTimeScatter(data)
|
|
|
} else if (flag === 2) {
|
|
|
- // 项目规模分布
|
|
|
- this.sortProjectScatter(data.projectScale)
|
|
|
- } else if (flag === 3) {
|
|
|
// 项目规模Top10
|
|
|
this.sortProjectTop10(data.ProjectTop10)
|
|
|
+ } else if (flag === 3) {
|
|
|
+ // 项目规模分布/地区规模分布/客户分布/地区分布及客户分布&Top3(table+chart)
|
|
|
+ // 项目规模分布
|
|
|
+ this.sortProjectScatter(data.projectScale)
|
|
|
+ // 地区规模分布
|
|
|
+ this.sortAreaScatter(data.area_infos)
|
|
|
+ // 客户分布
|
|
|
+ this.sortUserScatter(data.customer_scale)
|
|
|
+ // 地区分布及客户分布Top3
|
|
|
+ this.sortAreaUserTop3(data)
|
|
|
} else if (flag === 4) {
|
|
|
// 细分市场
|
|
|
this.sortMarketRefineData(data)
|
|
|
} else if (flag === 5) {
|
|
|
- // 采购单位
|
|
|
+ // 采购单位/中标单位&Top3(table+chart)
|
|
|
this.sortBuyerclassData(data)
|
|
|
- } else if (flag === 6) {
|
|
|
// 中标单位分析
|
|
|
this.sortWinnerData(data)
|
|
|
- } else if (flag === 7) {
|
|
|
- // 地区规模分布
|
|
|
- this.sortAreaScatter(data.area_infos)
|
|
|
- } else if (flag === 8) {
|
|
|
- // 客户分布
|
|
|
- this.sortUserScatter(data.customer_scale)
|
|
|
- } else if (flag === 9) {
|
|
|
- // 地区分布及客户分布Top3
|
|
|
- this.sortAreaUserTop3(data)
|
|
|
}
|
|
|
},
|
|
|
formatSelectTime (value) {
|
|
@@ -590,12 +588,12 @@ export default {
|
|
|
list[1].count = projectTotalMoney.count
|
|
|
list[1].unit = projectTotalMoney.unit
|
|
|
|
|
|
- list[1].ringRatio = profile.projctamount_ratio ? (profile.projctamount_ratio * 100).toFixed(4) : 0
|
|
|
+ list[1].ringRatio = profile.projctamount_ratio ? (profile.projctamount_ratio * 100).toFixed(2) : 0
|
|
|
// 项目平均金额
|
|
|
const projectAvgMoney = this.moneyUnit(profile.projectavgmoney ? profile.projectavgmoney : 0)
|
|
|
list[2].count = projectAvgMoney.count
|
|
|
list[2].unit = projectAvgMoney.unit
|
|
|
- list[2].ringRatio = profile.projectavgmoney_ratio ? (profile.projectavgmoney_ratio * 100).toFixed(4) : 0
|
|
|
+ list[2].ringRatio = profile.projectavgmoney_ratio ? (profile.projectavgmoney_ratio * 100).toFixed(2) : 0
|
|
|
// 中标单位数
|
|
|
list[3].count = profile.winnercount ? profile.winnercount : 0
|
|
|
list[3].ringRatio = profile.winnercount_ratio ? (profile.winnercount_ratio * 100).toFixed(2) : 0
|
|
@@ -846,7 +844,8 @@ export default {
|
|
|
// }
|
|
|
|
|
|
const areaChartData = {
|
|
|
- columns: ['项目所在地', '项目数量', '项目金额'],
|
|
|
+ columns: ['项目所在地', '项目数量'],
|
|
|
+ sColumns: ['项目金额'],
|
|
|
rows: []
|
|
|
}
|
|
|
let total = 0
|
|
@@ -855,13 +854,13 @@ export default {
|
|
|
const field = {
|
|
|
[areaChartData.columns[0]]: 'area',
|
|
|
[areaChartData.columns[1]]: 'total',
|
|
|
- [areaChartData.columns[2]]: 'amount'
|
|
|
+ [areaChartData.sColumns[0]]: 'amount'
|
|
|
}
|
|
|
areaList.forEach(item => {
|
|
|
const row = {}
|
|
|
- areaChartData.columns.forEach(column => {
|
|
|
+ areaChartData.columns.concat(areaChartData.sColumns).forEach(column => {
|
|
|
if (field[column] === 'amount') {
|
|
|
- row[column] = formatPrice(item[field[column]] / 10000)
|
|
|
+ row[column] = formatPrice(item[field[column]] / 10000) - 0
|
|
|
} else {
|
|
|
row[column] = item[field[column]]
|
|
|
}
|
|
@@ -907,11 +906,11 @@ export default {
|
|
|
},
|
|
|
sorAreaTop3 (data) {
|
|
|
const tableDataCount = {
|
|
|
- columns: ['序号', '地区:项目数量(个),占比', '前3中标单位:中标数量(个),该地区占比'],
|
|
|
+ columns: ['序号', '地区:项目数量(个),占比', '前3中标单位:中标数量(个)'], // ,该地区占比
|
|
|
rows: []
|
|
|
}
|
|
|
const tableDataAmount = {
|
|
|
- columns: ['序号', '地区:项目金额(万元),占比', '前3中标单位:中标金额(万元),该地区占比'],
|
|
|
+ columns: ['序号', '地区:项目金额(万元),占比', '前3中标单位:中标金额(万元)'], // ,该地区占比
|
|
|
rows: []
|
|
|
}
|
|
|
|
|
@@ -924,12 +923,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.area_count + '个',
|
|
|
- percent: formatPrice(item.area_scale * 100) + '%',
|
|
|
+ percent: item.area_scale ? `${formatPrice(item.area_scale * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner', // 用于判断采购单位或者中标单位
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.winner,
|
|
|
winner_value: w.winner_total ? `${w.winner_total}个` : 0,
|
|
|
- winner_percent: w.total_scale ? `${formatPrice(w.total_scale * 100)}%` : 0,
|
|
|
+ // winner_percent: w.total_scale ? `${formatPrice(w.total_scale * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.winner.length : 0
|
|
|
}
|
|
|
tableDataCount.rows.push(row)
|
|
@@ -939,7 +939,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.area_count + '个',
|
|
|
- percent: formatPrice(item.area_scale * 100) + '%',
|
|
|
+ percent: item.area_scale ? `${formatPrice(item.area_scale * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
tableDataCount.rows.push(row)
|
|
@@ -956,12 +956,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.area_amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.area_scale * 100) + '%',
|
|
|
+ percent: item.area_scale ? `${formatPrice(item.area_scale * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner',
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.winner,
|
|
|
winner_value: w.winner_amount ? `${formatPrice(w.winner_amount / 10000)}万元` : 0,
|
|
|
- winner_percent: w.amount_scale ? `${formatPrice(w.amount_scale * 100)}%` : 0,
|
|
|
+ // winner_percent: w.amount_scale ? `${formatPrice(w.amount_scale * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.winner.length : 0
|
|
|
}
|
|
|
tableDataAmount.rows.push(row)
|
|
@@ -971,7 +972,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.area_amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.area_scale * 100) + '%',
|
|
|
+ percent: item.area_scale ? `${formatPrice(item.area_scale * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
tableDataAmount.rows.push(row)
|
|
@@ -988,11 +989,11 @@ export default {
|
|
|
},
|
|
|
sorUserTop3 (data) {
|
|
|
const tableDataCount = {
|
|
|
- columns: ['序号', '客户类型:项目数量(个),占比', '前3中标单位:中标数量(个),该客户类型占比'],
|
|
|
+ columns: ['序号', '客户类型:项目数量(个),占比', '前3中标单位:中标数量(个)'], // ,该客户类型占比
|
|
|
rows: []
|
|
|
}
|
|
|
const tableDataAmount = {
|
|
|
- columns: ['序号', '客户类型:项目金额(万元),占比', '前3中标单位:中标金额(万元),该客户类型占比'],
|
|
|
+ columns: ['序号', '客户类型:项目金额(万元),占比', '前3中标单位:中标金额(万元)'], // ,该客户类型占比
|
|
|
rows: []
|
|
|
}
|
|
|
|
|
@@ -1005,12 +1006,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.buyclass_count + '个',
|
|
|
- percent: formatPrice(item.buyclass_scale * 100) + '%',
|
|
|
+ percent: item.buyclass_scale ? `${formatPrice(item.buyclass_scale * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner', // 用于判断采购单位或者中标单位
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.winner,
|
|
|
winner_value: w.winner_total ? `${w.winner_total}个` : 0,
|
|
|
- winner_percent: w.total_scale ? `${formatPrice(w.total_scale * 100)}%` : 0,
|
|
|
+ // winner_percent: w.total_scale ? `${formatPrice(w.total_scale * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.winner.length : 0
|
|
|
}
|
|
|
tableDataCount.rows.push(row)
|
|
@@ -1020,7 +1022,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.area_count + '个',
|
|
|
- percent: formatPrice(item.area_scale * 100) + '%',
|
|
|
+ percent: item.buyclass_scale ? `${formatPrice(item.buyclass_scale * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
tableDataCount.rows.push(row)
|
|
@@ -1037,12 +1039,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.buyclass_amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.buyclass_scale * 100) + '%',
|
|
|
+ percent: item.buyclass_scale ? `${formatPrice(item.buyclass_scale * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner', // 用于判断采购单位或者中标单位
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.winner,
|
|
|
winner_value: w.winner_amount ? `${formatPrice(w.winner_amount / 10000)}万元` : 0,
|
|
|
- winner_percent: w.amount_scale ? `${formatPrice(w.amount_scale * 100)}%` : 0,
|
|
|
+ // winner_percent: w.amount_scale ? `${formatPrice(w.amount_scale * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.winner.length : 0
|
|
|
}
|
|
|
tableDataAmount.rows.push(row)
|
|
@@ -1052,7 +1055,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.area_amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.area_scale * 100) + '%',
|
|
|
+ percent: item.buyclass_scale ? `${formatPrice(item.buyclass_scale * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
tableDataAmount.rows.push(row)
|
|
@@ -1115,11 +1118,11 @@ export default {
|
|
|
},
|
|
|
sortRefineTop3 (data) {
|
|
|
const tableDataCount = {
|
|
|
- columns: ['序号', '细分市场:项目数量(个),占比', '前3中标单位:中标数量(个),该细分市场占比'],
|
|
|
+ columns: ['序号', '细分市场:项目数量(个),占比', '前3中标单位:中标数量(个)'], // ,该细分市场占比
|
|
|
rows: []
|
|
|
}
|
|
|
const tableDataAmount = {
|
|
|
- columns: ['序号', '细分市场:项目金额(万元),占比', '前3中标单位:中标金额(万元),该细分市场占比'],
|
|
|
+ columns: ['序号', '细分市场:项目金额(万元),占比', '前3中标单位:中标金额(万元)'], // ,该细分市场占比
|
|
|
rows: []
|
|
|
}
|
|
|
|
|
@@ -1132,11 +1135,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.total + '个',
|
|
|
+ percent: item.prop ? `${formatPrice(item.prop * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner',
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.name,
|
|
|
winner_value: w.value ? `${w.value}个` : 0,
|
|
|
- winner_percent: w.prop ? `${formatPrice(w.prop * 100)}%` : 0,
|
|
|
+ // winner_percent: w.prop ? `${formatPrice(w.prop * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.totalTop.length : 0
|
|
|
}
|
|
|
tableDataCount.rows.push(row)
|
|
@@ -1146,6 +1151,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.total + '个',
|
|
|
+ percent: item.prop ? `${formatPrice(item.prop * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
tableDataCount.rows.push(row)
|
|
@@ -1162,11 +1168,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.amount / 10000) + '万元',
|
|
|
+ percent: item.prop ? `${formatPrice(item.prop * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner',
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.name,
|
|
|
winner_value: w.value ? `${formatPrice(w.value / 10000)}万元` : 0,
|
|
|
- winner_percent: w.prop ? `${formatPrice(w.prop * 100)}%` : 0,
|
|
|
+ // winner_percent: w.prop ? `${formatPrice(w.prop * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.amountTop.length : 0
|
|
|
}
|
|
|
tableDataAmount.rows.push(row)
|
|
@@ -1176,6 +1184,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.amount / 10000) + '万元',
|
|
|
+ percent: item.prop ? `${formatPrice(item.prop * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
tableDataAmount.rows.push(row)
|
|
@@ -1231,11 +1240,11 @@ export default {
|
|
|
},
|
|
|
sortBuyerclassTableData (data) {
|
|
|
const dataCount = {
|
|
|
- columns: ['序号', '采购单位:采购数量(个),占比', '前3中标单位:中标数量(个),占该采购单位'],
|
|
|
+ columns: ['序号', '采购单位:采购数量(个)', '前3中标单位:中标数量(个)'], // ,占比 | ,占该采购单位
|
|
|
rows: []
|
|
|
}
|
|
|
const dataAmount = {
|
|
|
- columns: ['序号', '采购单位:采购金额(万元),占比', '前3中标单位:中标金额(万元),占该采购单位'],
|
|
|
+ columns: ['序号', '采购单位:采购金额(万元)', '前3中标单位:中标金额(万元)'], // ,占比 | ,占该采购单位
|
|
|
rows: []
|
|
|
}
|
|
|
|
|
@@ -1248,12 +1257,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.number + '个',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
+ // percent: item.accounted ? `${formatPrice(item.accounted * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner',
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.name,
|
|
|
winner_value: w.number ? `${w.number}个` : 0,
|
|
|
- winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
+ // winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.winnertop3.length : 0
|
|
|
}
|
|
|
dataCount.rows.push(row)
|
|
@@ -1263,7 +1273,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.number + '个',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
+ // percent: item.accounted ? `${formatPrice(item.accounted * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
dataCount.rows.push(row)
|
|
@@ -1280,12 +1290,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
+ // percent: item.accounted ? `${formatPrice(item.accounted * 100)}%` : '',
|
|
|
winner_id: w.id,
|
|
|
+ winner_type: 'winner',
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.name,
|
|
|
winner_value: w.amount ? `${formatPrice(w.amount / 10000)}万元` : 0,
|
|
|
- winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
+ // winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.winnertop3.length : 0
|
|
|
}
|
|
|
dataAmount.rows.push(row)
|
|
@@ -1295,7 +1306,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
+ // percent: item.accounted ? `${formatPrice(item.accounted * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
dataAmount.rows.push(row)
|
|
@@ -1352,11 +1363,11 @@ export default {
|
|
|
},
|
|
|
sortWinnerTableData (data) {
|
|
|
const dataCount = {
|
|
|
- columns: ['序号', '中标单位:中标数量(个),占比', '前3采购单位:采购数量(个),占该中标单位'],
|
|
|
+ columns: ['序号', '中标单位:中标数量(个)', '前3采购单位:采购数量(个)'], // ,占比 | ,占该中标单位
|
|
|
rows: []
|
|
|
}
|
|
|
const dataAmount = {
|
|
|
- columns: ['序号', '中标单位:中标金额(万元),占比', '前3采购单位:采购金额(万元),占该中标单位'],
|
|
|
+ columns: ['序号', '中标单位:中标金额(万元)', '前3采购单位:采购金额(万元)'], // ,占比 | ,占该中标单位
|
|
|
rows: []
|
|
|
}
|
|
|
|
|
@@ -1369,12 +1380,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.number + '个',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
- winner_id: w.id,
|
|
|
+ // percent: item.accounted ? `${formatPrice(item.accounted * 100)}%` : '',
|
|
|
+ winner_id: w.name,
|
|
|
+ winner_type: 'buyer',
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.name,
|
|
|
winner_value: w.number ? `${w.number}个` : 0,
|
|
|
- winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
+ // winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.buyertop3.length : 0
|
|
|
}
|
|
|
dataCount.rows.push(row)
|
|
@@ -1384,7 +1396,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: item.number + '个',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
+ // percent: item.accounted ? `${formatPrice(item.accounted * 100)}%` : '',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
dataCount.rows.push(row)
|
|
@@ -1401,12 +1413,13 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
- winner_id: w.id,
|
|
|
+ // percent: formatPrice(item.accounted * 100) + '%',
|
|
|
+ winner_id: w.name,
|
|
|
+ winner_type: 'buyer',
|
|
|
winner_index: i + 1,
|
|
|
winner_name: w.name,
|
|
|
winner_value: w.amount ? `${formatPrice(w.amount / 10000)}万元` : 0,
|
|
|
- winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
+ // winner_percent: w.accounted ? `${formatPrice(w.accounted * 100)}%` : 0,
|
|
|
rowspan: i === 0 ? item.buyertop3.length : 0
|
|
|
}
|
|
|
dataAmount.rows.push(row)
|
|
@@ -1416,7 +1429,7 @@ export default {
|
|
|
index: index + 1,
|
|
|
name: item.name,
|
|
|
value: formatPrice(item.amount / 10000) + '万元',
|
|
|
- percent: formatPrice(item.accounted * 100) + '%',
|
|
|
+ // percent: formatPrice(item.accounted * 100) + '%',
|
|
|
rowspan: 1
|
|
|
}
|
|
|
dataAmount.rows.push(row)
|