From 4b974de5715d60253ad655017191d05445499d5c Mon Sep 17 00:00:00 2001 From: zch Date: Mon, 21 Jul 2025 09:37:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(qms):=20=E4=BC=98=E5=8C=96=20PDA=20?= =?UTF-8?q?=E8=B4=A8=E6=A3=80=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8=E5=92=8C?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为检测项类别和检测类型添加必填校验 - 新增分页查询未处理质检任务列表接口 - 新增查询质检详情包括子表检测项接口 - 新增提交质检结果接口,包含数据验证、结果计算和不合格品生成逻辑 - 新增分页查询质检任务历史记录接口 - 新增分页查询用户分派的质检任务接口 - 新增质检数据完整性验证接口 --- src/views/qms/qcInspectionItemCategory/index.vue | 7 +++++++ src/views/qms/qcInspectionType/index.vue | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/views/qms/qcInspectionItemCategory/index.vue b/src/views/qms/qcInspectionItemCategory/index.vue index b48ffec..8dff9c1 100644 --- a/src/views/qms/qcInspectionItemCategory/index.vue +++ b/src/views/qms/qcInspectionItemCategory/index.vue @@ -101,6 +101,7 @@ + @@ -220,6 +221,12 @@ const data = reactive>({ // typeId: [ // { required: true, message: "检测类型主键不能为空", trigger: "blur" } // ], - // typeCode: [ - // { required: true, message: "检测类型编码不能为空", trigger: "blur" } - // ], + typeCode: [ + { required: true, message: "检测类型编码不能为空", trigger: "blur" } + ], typeName: [ { required: true, message: "检测类型名称不能为空", trigger: "blur" } ],