ludc
2023-06-13 5569ff5c185797bb159ea2c58a52a92815e18db9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<template>
    <div>
        <el-button @click="outerVisible = true">流程测试</el-button>
        <el-button @click="visibleFlow = true">模板流程</el-button>
        <flow-business :visible.sync="outerVisible"></flow-business>
        <flow-path :visible.sync="visibleFlow" code="A12826E4-2B66-6D56-DE30-92BB1D7F607F"></flow-path>
    </div>
</template>
 
<script>
import FlowBusiness from '@/components/template/Business'
import FlowPath from '@/components/template/FlowPath'
export default {
    components:{
        FlowBusiness,
        FlowPath
    },
    data() {
        return {
            outerVisible: false,
            visibleFlow: false,
           
        }
    },
    methods: {
        
    }
}
</script>
<style lang="scss" scoped>
 
</style>