feat(xumu): 新增理赔审核功能

- 添加理赔审核页面组件 AppClaimAudit
- 实现理赔申请列表页面,包括搜索、导出和查看功能
- 新增理赔申请详情页面,支持理赔材料上传和提交
- 集成耳标选择器组件,用于选择理赔标的
- 优化页面样式和布局,提升用户体验
This commit is contained in:
aixianling
2025-01-02 18:00:48 +08:00
parent 437ae1425c
commit c073c8d0bd
3 changed files with 302 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<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 ["#claim", "#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>