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
33
34
35
| <script lang="ts" setup>
| import { onMounted } from 'vue';
| import { useRoute } from 'vue-router';
|
| import { usePopup } from '@jnpf/ui/popup';
|
| import FlowParser from '#/views/workFlow/components/FlowParser.vue';
|
| defineOptions({ name: 'WorkFlowAddFlow' });
|
| const [registerFlowParser, { openPopup: openFlowParser }] = usePopup();
|
| function init() {
| const route = useRoute();
| const flowId = route.params.id as string;
| const data = {
| id: '',
| flowId,
| opType: '-1',
| hideCancelBtn: true,
| hideSaveBtn: true,
| };
| openFlowParser(true, data);
| }
|
| onMounted(() => {
| init();
| });
| </script>
|
| <template>
| <div class="jnpf-content-wrapper bg-white">
| <FlowParser @register="registerFlowParser" @reload="init()" />
| </div>
| </template>
|
|