我的任务,干扰源分析,常态化干扰源用户管理,终端检测,bug调整

This commit is contained in:
sjl
2025-12-12 15:44:56 +08:00
parent 289900f9ff
commit ff2b9db7b8
7 changed files with 150 additions and 38 deletions

View File

@@ -37,7 +37,7 @@
{{ processInstance?.startUser.deptName }}
</el-form-item>
<el-card v-if="runningTasks[index].formId != null" style="width: 100%; margin-right: 40%">
<el-card v-if="runningTasks[index].formId != null" style="width: 100%; margin-right: 40%">
<template #header>
<span class="el-icon-picture-outline">
{{ runningTasks[index]?.formName }}
@@ -226,7 +226,7 @@ const handleAudit = async (task, pass) => {
return
}
// 1.3 验证 approveForms 中的 radio 字段是否都有值
// 1.3 验证 approveForms 中的 radio 字段是否都有值
const currentApproveForm = approveForms.value[index];
if (currentApproveForm && currentApproveForm.rule && Array.isArray(currentApproveForm.rule)) {
const emptyRadioFields = currentApproveForm.rule.filter(rule =>
@@ -236,9 +236,9 @@ const handleAudit = async (task, pass) => {
rule.value === '')
);
if (emptyRadioFields.length > 0) {
ElMessage.error('请确认试运行分析报告审核要点都已勾选!');
ElMessage.error('请确认'+ stepList.value[index].formName +'都已勾选!');
loading.value = false;
return;
}