Files
dvcp_v2_webapp/project/xumu/AppLoanApply/AppLoanApply.vue
aixianling f108a61293 feat(loan): 适配贷款业务流程
- 修改投保单号为贷款合同号
- 更新相关 API 路径
-调整表格列和搜索条件以适应贷款业务
- 优化耳标号筛选功能
- 更新字典加载项
2025-01-03 14:52:43 +08:00

36 lines
646 B
Vue

<script>
import add from "./add.vue";
import list from "./list.vue";
export default {
name: "AppLoanApply",
label: "贷款申请",
props: {
instance: Function,
dict: Object,
permissions: Function
},
computed: {
currentPage() {
let {hash} = this.$route
return hash == "#add" ? add : list
}
},
created() {
this.dict.load("auditStatus", "loanProduct", "loanStatus", "category", "variety")
},
}
</script>
<template>
<section class="AppLoanApply">
<component :is="currentPage" v-bind="$props"/>
</section>
</template>
<style scoped lang="scss">
.AppLoanApply {
height: 100%;
}
</style>