工作流配置完成

This commit is contained in:
aixianling
2022-08-10 16:58:52 +08:00
parent fbb9271966
commit c5b2b233b2
4 changed files with 319 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<template>
<section class="AppWorkflowManage">
<component :is="currentPage" v-bind="$props"/>
</section>
</template>
<script>
import List from "./list";
import Add from "./add";
export default {
name: "AppWorkflowManage",
components: {Add, List},
label: "工作流管理",
props: {
instance: Function,
dict: Object,
permissions: Function
},
computed: {
currentPage() {
let {hash} = this.$route
return hash == "#add" ? Add : List
}
},
created() {
this.dict.load('yesOrNo')
}
}
</script>
<style lang="scss" scoped>
.AppWorkflowManage {
height: 100%;
}
</style>