Files
dvcp_v2_webapp/project/xumu/AppDeathAudit/AppDeathAudit.vue

36 lines
654 B
Vue
Raw Normal View History

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