|
|
|
@ -43,7 +43,7 @@ const props = defineProps({ |
|
|
|
default:"" |
|
|
|
} |
|
|
|
}) |
|
|
|
const emits = defineEmits(["update:openDrawer"]); |
|
|
|
const emits = defineEmits(["update:openDrawer","chanerequest"]); |
|
|
|
const isShow = computed({ |
|
|
|
get: () => props.openDrawer, |
|
|
|
set: (val) => { |
|
|
|
@ -182,7 +182,7 @@ const saveSet = async () => { |
|
|
|
} |
|
|
|
}) |
|
|
|
.finally(()=>{ |
|
|
|
|
|
|
|
emits("chanerequest"); |
|
|
|
|
|
|
|
}) |
|
|
|
// let res = await setWorkFlowData(processConfig.value); |
|
|
|
@ -280,7 +280,7 @@ const saveEdit =()=>{ |
|
|
|
} |
|
|
|
}) |
|
|
|
.finally(()=>{ |
|
|
|
|
|
|
|
emits("chanerequest"); |
|
|
|
|
|
|
|
}) |
|
|
|
} |
|
|
|
@ -311,6 +311,10 @@ const saveNew = () => { |
|
|
|
clearCanvas(1); |
|
|
|
} |
|
|
|
}) |
|
|
|
.finally(()=>{ |
|
|
|
emits("chanerequest"); |
|
|
|
|
|
|
|
}) |
|
|
|
} |
|
|
|
//获取流程内容 |
|
|
|
const gainFlowCont = () =>{ |
|
|
|
|