Files
dvcp_v2_webapp/project/xumu/AppClaimAudit/AppClaimAudit.vue
aixianling e1231d408c refactor(xumu): 重构理赔审核页面
- 修改页面布局和样式
- 优化理赔材料上传功能
- 添加审核信息相关字段
- 调整投保对象和审核记录的展示方式
- 优化搜索和筛选功能
2025-01-03 11:18:15 +08:00

36 lines
669 B
Vue

<script>
import add from "./add.vue";
import list from "./list.vue";
export default {
name: "AppClaimAudit",
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", "insureType", "insureStatus", "category", "variety")
},
}
</script>
<template>
<section class="AppClaimAudit">
<component :is="currentPage" v-bind="$props"/>
</section>
</template>
<style scoped lang="scss">
.AppClaimAudit {
height: 100%;
}
</style>