This commit is contained in:
liuye
2022-04-08 11:49:59 +08:00
parent 3c8104554a
commit 510f9f14b1
6 changed files with 431 additions and 30 deletions

View File

@@ -2,7 +2,7 @@
<section class="AppFinancingNeeds">
<ai-list v-if="showList">
<template slot="title">
<ai-title title="融资需求" :isShowBottomBorder="false"></ai-title>
<ai-title slot="title" title="融资需求" :isShowBottomBorder="false" :isShowArea="currIndex == 1 && showList" v-model="areaId" :instance="instance" @change="changeArea"/>
</template>
<template slot="tabs">
<el-tabs class="tabs-page" v-model="currIndex">
@@ -15,7 +15,6 @@
</ai-list>
<component v-if="!showList" :is="currentPage" :instance="instance" :dict="dict"
:permissions="permissions" :row="detail" @goBack="goBack"></component>
<!-- <component :is="currentComponent" :instance="instance" :dict="dict" :permissions="permissions"/> -->
</section>
</template>
@@ -45,6 +44,7 @@ export default {
showList: true,
currentPage: "",
detail: {},
areaId: ''
}
},
computed: {
@@ -65,7 +65,7 @@ export default {
}
},
created() {
this.dict.load("productRepaymentTimeline", "financialFundPurpose","financingDemandApplyType", "enterpriseType")
this.dict.load("productRepaymentTimeline", "financialFundPurpose","financingDemandApplyType", "enterpriseType", "dishonestPersonSituation", "administrativeSanctionType")
},
methods: {
goPage(obj) {
@@ -79,6 +79,9 @@ export default {
this.$refs[this.currIndex][0].getTableData();
})
},
changeArea() {
this.$refs[this.currIndex][0].getTableData();
}
}
}
</script>