屏蔽放贷数量

This commit is contained in:
liuye
2022-04-12 13:39:27 +08:00
parent 3607bc86e9
commit 427f890aa1

View File

@@ -39,15 +39,16 @@
<div class="line-chart chart-content">
<div class="title">交易趋势</div>
<p class="header-title"><span class="tips-bg" style="background: #2891FF;"></span>申请笔数
<!-- <span class="tips-bg" style="background: #26D52B;"></span>放款笔数 -->
<span class="tips-bg" style="background: #26D52B;"></span>放款笔数
</p>
<div id="lineChart"></div>
</div>
</div>
<div class="chart-column chart-content">
<div class="title">机构融资对接量TOP10</div>
<p class="header-title"><span class="tips-bg" style="background: #2891FF;"></span>申请笔数<span class="tips-bg"
style="background: #26D52B;"></span>放款笔数
<p class="header-title">
<span class="tips-bg" style="background: #2891FF;"></span>申请笔数
<!--<span class="tips-bg" style="background: #26D52B;"></span>放款笔数 -->
</p>
<div id="columnChart"></div>
</div>
@@ -258,19 +259,19 @@ export default {
}
}
},
// {
// name: '放款笔数',
// type: 'line',
// stack: 'Total',
// data: auditList,
// itemStyle: {
// normal: {
// lineStyle: {
// color: '#26D52B'
// }
// }
// }
// },
{
name: '放款笔数',
type: 'line',
stack: 'Total',
data: auditList,
itemStyle: {
normal: {
lineStyle: {
color: '#26D52B'
}
}
}
},
]
};
this.lineChart.setOption(option)
@@ -312,13 +313,14 @@ export default {
data: applyList,
barWidth: 10,
},
{
name: '放款数量',
type: 'bar',
barGap: 0,
data: auditList,
barWidth: 10,
}]
// {
// name: '放款数量',
// type: 'bar',
// barGap: 0,
// data: auditList,
// barWidth: 10,
// }
]
};
this.columnChart.setOption(option)