9f4bed7a by lihua

优化发起评估的流程接口调用时机

1 parent 61654c4c
......@@ -132,6 +132,14 @@ const handleCreate = () => {
formItems.value[1].default = [];
dialogInfo.value.visible = true;
dialogInfo.value.type = '';
getCamundaDeploymentId('10018', userData.tenantGuid, userData.staffGuid).then((res: any) => {
if (res.code == proxy.$passCode) {
deploymentId.value = res.data;
} else {
deploymentId.value = '';
proxy.$ElMessage.error(res.msg);
}
})
}
const page = ref({
......
......@@ -192,6 +192,16 @@ const handleCreate = () => {
formItems.value[5].default = [];
dialogInfo.value.visible = true;
dialogInfo.value.type = '';
if (!deploymentId.value) {
getCamundaDeploymentId('10019', userData.tenantGuid, userData.staffGuid).then((res: any) => {
if (res.code == proxy.$passCode) {
deploymentId.value = res.data;
} else {
deploymentId.value = '';
proxy.$ElMessage.error(res.msg);
}
})
}
}
const page = ref({
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!