feat(x): 新增贷款审核和页面
- 实现贷款申请功能 - 添加贷款审核相关的组件、审批和查看功能 -umu集成养殖场、贷款银行和产品选择 - 支持耳标号扫描和选择 - 添加贷款合同号和资料上传功能- 实现审核状态和结果的展示
This commit is contained in:
35
project/xumu/AppLoanAudit/AppLoanAudit.vue
Normal file
35
project/xumu/AppLoanAudit/AppLoanAudit.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<script>
|
||||
import add from "./add.vue";
|
||||
import list from "./list.vue";
|
||||
|
||||
export default {
|
||||
name: "AppLoanAudit",
|
||||
label: "贷款审核",
|
||||
props: {
|
||||
instance: Function,
|
||||
dict: Object,
|
||||
permissions: Function
|
||||
},
|
||||
computed: {
|
||||
currentPage() {
|
||||
let {hash} = this.$route
|
||||
return ["#audit", "#add"].includes(hash) ? add : list
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.dict.load("auditStatus", "loanProduct", "loanStatus", "category", "variety")
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section class="AppLoanAudit">
|
||||
<component :is="currentPage" v-bind="$props"/>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.AppLoanAudit {
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user