feat(xumu): 新增死亡登记功能
- 添加死亡登记列表页面和新增/编辑页面 - 实现死亡登记数据的查询、新增、编辑和删除功能 -集成审批流,支持再次提交审批 - 优化搜索功能,支持多条件筛选
This commit is contained in:
35
project/xumu/AppDeathManage/AppDeathManage.vue
Normal file
35
project/xumu/AppDeathManage/AppDeathManage.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user