Files
dvcp_v2_webapp/project/xumu/AppOutManage/AppOutManage.vue
aixianling 7828af24fd feat(xumu): 新增淘汰登记功能
- 添加 AppOutManage组件,包含新增和列表页面- 实现淘汰登记的新增、编辑、审核等功能
-集成字典加载、表格展示、搜索筛选等模块
-优化表单验证和图片上传功能
2024-12-27 18:00:52 +08:00

36 lines
570 B
Vue

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