- 实现贷款申请功能 - 添加贷款审核相关的组件、审批和查看功能 -umu集成养殖场、贷款银行和产品选择 - 支持耳标号扫描和选择 - 添加贷款合同号和资料上传功能- 实现审核状态和结果的展示
36 lines
665 B
Vue
36 lines
665 B
Vue
<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>
|