更正贷款应用名
This commit is contained in:
35
project/xiushan/apps/finance/AppLoanAudit/AppLoanAudit.vue
Normal file
35
project/xiushan/apps/finance/AppLoanAudit/AppLoanAudit.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<section class="AppLoanAudit">
|
||||
<component :is="currentComponent" :instance="instance" :dict="dict" :permissions="permissions"/>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import LoanDetail from "./loanDetail";
|
||||
import LoanList from "./loanList";
|
||||
|
||||
export default {
|
||||
name: "AppLoanAudit",
|
||||
components: {LoanList, LoanDetail},
|
||||
label: "贷款审核",
|
||||
props: {
|
||||
instance: Function,
|
||||
dict: Object,
|
||||
permissions: Function
|
||||
},
|
||||
computed: {
|
||||
currentComponent() {
|
||||
return !!this.$route.query.id ? LoanDetail : LoanList
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.dict.load("productRepaymentTimeline", "financialFundPurpose", "enterpriseAuditStatus", "financialLoanApplyStatus")
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.AppLoanAudit {
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user