diff --git a/src/views/wf/ticketd_b.vue b/src/views/wf/ticketd_b.vue index 7f28467c..2d65fece 100644 --- a/src/views/wf/ticketd_b.vue +++ b/src/views/wf/ticketd_b.vue @@ -35,16 +35,16 @@ const props = defineProps({ const workflow = ref(null); const transitions = ref([]); onMounted(async () => { - init(); - watch( - () => props.ticket_, - async (newVal) => { - if (newVal && Object.keys(newVal).length > 0) { - init(); - } - }, - { deep: true } - ) + setTimeout(()=>{init()}, 2000) + // watch( + // () => props.ticket_, + // async (newVal) => { + // if (newVal && Object.keys(newVal).length > 0) { + // init(); + // } + // }, + // { deep: true } + // ) }) const ticketId = ref(null);