This commit is contained in:
liuye
2022-05-12 14:42:44 +08:00
parent 5dc1ba2230
commit 3f25e3a753

View File

@@ -24,7 +24,7 @@
<h2 v-text="overviews['累计申请笔数(笔)']"/>
<p>总数</p>
</div>
<ai-echart :ops="circleEchart" :data="[{name:'企业融资',value:overviews['累计申请笔数(笔)']}]"/>
<ai-echart :ops="circleEchart" :data="[{name:'企业融资',value:applyInfo['企业融资']}, {name:'个人融资',value:applyInfo['个人贷款']}]"/>
</div>
<div class="cir-text">
<el-row type="flex" justify="space-between" align="middle" class="info">
@@ -172,6 +172,7 @@ export default {
overviews: [],
productTop10: [],
tradeTrend: [],
applyInfo: {}
}
},
methods: {
@@ -179,6 +180,16 @@ export default {
this.getOverviews()
this.getProductTop10()
this.getTradeTrend()
this.getApply()
},
getApply() {
this.instance.post("/appfinancialloanapply/staticFinancialLoanApplyByMainbody", null, {
params: {...this.search}
}).then(res => {
if (res?.data) {
this.applyInfo = res.data
}
})
},
getOverviews() {
this.instance.post("/appfinancialloanapply/staticFinancialLoanApplyByOrganization", null, {