xiejun
2023-06-15 235560b9d7cff1d7dce1f90a08df56d6ef8dd682
Source/UBCS-WEB/src/views/flow/flowPath.vue
@@ -1,32 +1,35 @@
<template>
    <div>
        <el-button @click="outerVisible = true">流程测试</el-button>
        <el-button @click="visibleFlow = true">模板流程</el-button>
        <el-button @click="handleTable">人员设置</el-button>
        <flow-business :visible.sync="outerVisible"></flow-business>
        <flow-path :visible.sync="visibleFlow" code="A12826E4-2B66-6D56-DE30-92BB1D7F607F"></flow-path>
       <set-personnel :visible.sync="visibleFlow"></set-personnel>
    </div>
</template>
<script>
import FlowBusiness from '@/components/template/Business'
import FlowPath from '@/components/template/FlowPath'
import SetPersonnel from '@/components/template/SetPersonnel'
export default {
    components:{
    components: {
        FlowBusiness,
        FlowPath
        SetPersonnel
    },
    data() {
        return {
            outerVisible: false,
            visibleFlow: false,
        }
    },
    methods: {
        handleSave(event) {
            console.log(event)
        },
        handleTable(){
            this.visibleFlow = true
        }
    }
}
</script>
<style lang="scss" scoped>
</style>
<style lang="scss" scoped></style>