ny
昨天 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
<script lang="ts" setup>
import { usePopup } from '@jnpf/ui/popup';
 
import FlowParser from '#/views/workFlow/components/FlowParser.vue';
 
import FlowList from './FlowList.vue';
 
defineOptions({ name: 'WorkFlowAddFlow' });
 
const [registerFlowParser, { openPopup: openFlowParser }] = usePopup();
 
function onSelect(record) {
  const data = {
    id: '',
    flowId: record.id,
    opType: '-1',
    isFlow: 1,
  };
  openFlowParser(true, data);
}
</script>
 
<template>
  <div class="jnpf-content-wrapper bg-white">
    <FlowList @select="onSelect" />
    <FlowParser @register="registerFlowParser" />
  </div>
</template>