优化
This commit is contained in:
@ -185,6 +185,10 @@ const props = defineProps({
|
||||
taskVariables: {
|
||||
type: Object as () => Record<string, any>,
|
||||
default: () => {}
|
||||
},
|
||||
businessId1: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
});
|
||||
//遮罩层
|
||||
@ -336,6 +340,9 @@ const handleCompleteTask = async () => {
|
||||
}
|
||||
if (isDrawing.value) {
|
||||
isShowSubmit.value = true;
|
||||
nextTick(() => {
|
||||
detailFormTeRef.value.getInfo(props.businessId1);
|
||||
});
|
||||
return;
|
||||
}
|
||||
await proxy?.$modal.confirm('是否确认提交?');
|
||||
@ -538,6 +545,9 @@ const handleTermination = async () => {
|
||||
const handleTerminationTask = async () => {
|
||||
if (isDrawing.value) {
|
||||
isShowTermination.value = true;
|
||||
nextTick(() => {
|
||||
detailFormTeRef.value.getInfo(props.businessId);
|
||||
});
|
||||
return;
|
||||
}
|
||||
const params = {
|
||||
|
Reference in New Issue
Block a user