Files
dvcp_v2_webapp/project/xumu/AppDeathManage/AppDeathManage.vue

36 lines
651 B
Vue
Raw Normal View History

<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
}
},
created() {
this.dict.load("yesOrNo", "category", "variety", "deathReason", "auditStatus")
}
}
</script>
<template>
<section class="AppDeathManage">
<component :is="currentPage" v-bind="$props" />
</section>
</template>
<style scoped lang="scss">
.AppDeathManage {
height: 100%;
}
</style>