From 5b7cc3b0720e34b928c9b742f1a267a16a090059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= <2178503051@qq.com> Date: Mon, 18 May 2026 15:15:29 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms/todo,mes/qc):=20=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E8=B4=A8=E4=BF=9D=E4=B9=A6=E5=AE=A1=E6=89=B9=E4=BB=A3=E5=8A=9E?= =?UTF-8?q?=E9=A1=B5=E5=B9=B6=E4=BC=98=E5=8C=96=E6=A3=80=E9=AA=8C=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 待办页面新增质保书审批标签页,添加权限控制并引入对应组件 2. 方案选择组件新增任务类型筛选和所属单位回传 3. 检验任务页面重构搜索栏,新增所属单位和任务类型筛选,优化列表展示样式和布局 4. 补充相关接口调用和表单参数完善 --- .../KLPService/SchemeSelect/index.vue | 11 + klp-ui/src/views/mes/qc/inspection/task.vue | 304 ++++++++---------- klp-ui/src/views/wms/todo/index.vue | 5 + 3 files changed, 158 insertions(+), 162 deletions(-) diff --git a/klp-ui/src/components/KLPService/SchemeSelect/index.vue b/klp-ui/src/components/KLPService/SchemeSelect/index.vue index 40d01fef..57cf7838 100644 --- a/klp-ui/src/components/KLPService/SchemeSelect/index.vue +++ b/klp-ui/src/components/KLPService/SchemeSelect/index.vue @@ -64,6 +64,14 @@ + + + + + + + +
选择钢卷 @@ -207,6 +215,7 @@ export default { }, handleSchemeClick(row) { this.selectedTemplate = row; + this.form.belongCompany = row.templateUnit || undefined; this.loadCheckItems(row); }, loadCheckItems(template) { @@ -236,6 +245,8 @@ export default { this.$emit("confirm", { template: this.selectedTemplate, taskCode: this.form.taskCode, + taskType: this.form.taskType, + belongCompany: this.form.belongCompany || undefined, coilIds: coilIds || undefined }); this.dialogVisible = false; diff --git a/klp-ui/src/views/mes/qc/inspection/task.vue b/klp-ui/src/views/mes/qc/inspection/task.vue index 9aa17286..d729f741 100644 --- a/klp-ui/src/views/mes/qc/inspection/task.vue +++ b/klp-ui/src/views/mes/qc/inspection/task.vue @@ -1,37 +1,43 @@