| | |
| | | <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> |