Files
dvcp_v2_webapp/project/xumu/AppDeathManage/AppDeathManage.vue
aixianling 908e65f136 feat(xumu): 新增死亡登记功能
- 添加死亡登记列表页面和新增/编辑页面
- 实现死亡登记数据的查询、新增、编辑和删除功能
-集成审批流,支持再次提交审批
- 优化搜索功能,支持多条件筛选
2024-12-27 18:06:36 +08:00

36 lines
576 B
Vue

<script>
import add from "./add.vue";
import list from "./list.vue";
export default {
name: "AppDeathManage",
label: "死亡登记",
props: {
instance: Function,
dict: Object,
permissions: Function
},
computed: {
currentPage() {
let {hash} = this.$route
return hash == "#add" ? add : list
}
},
data() {
return {}
}
}
</script>
<template>
<section class="AppDeathManage">
<component :is="currentPage" v-bind="$props"/>
</section>
</template>
<style scoped lang="scss">
.AppDeathManage {
height: 100%;
}
</style>