ny
22 小时以前 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<script lang="ts" setup>
import { onMounted } from 'vue';
 
import { usePopup } from '@jnpf/ui/popup';
 
import FlowParser from '#/views/workFlow/components/FlowParser.vue';
 
import FormPopup from './FormPopup.vue';
 
const props = defineProps(['config', 'modelId', 'isPreview']);
const [registerFormPopup, { openPopup: openFormPopup }] = usePopup();
const [registerFlowParser, { openPopup: openFlowParser }] = usePopup();
 
function openFlowPopup() {
  const data = {
    id: '',
    flowId: props.config.flowId,
    opType: '-1',
    hideCancelBtn: true,
    hideSaveBtn: true,
  };
  openFlowParser(true, data);
}
function init() {
  if (props.config.enableFlow) return openFlowPopup();
  const data = {
    modelId: props.modelId,
    isPreview: props.isPreview,
    ...props.config,
  };
  openFormPopup(true, data);
}
 
onMounted(() => {
  init();
});
</script>
 
<template>
  <div class="jnpf-content-wrapper bg-white">
    <FormPopup @register="registerFormPopup" />
    <FlowParser @register="registerFlowParser" @reload="init()" />
  </div>
</template>