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