From 07b4f10a271bf25ee2af45389b234c133b2f2a5b 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:14:55 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat(crm/coilTable):=20=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E6=95=B0=E5=AD=97=E9=92=A2=E5=8D=B7=E8=B7=B3=E8=BD=AC=E6=8C=89?= =?UTF-8?q?=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在钢卷表格操作栏添加数字钢卷按钮,点击后跳转至对应钢卷详情页 --- klp-ui/src/views/crm/components/CoilTable.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/klp-ui/src/views/crm/components/CoilTable.vue b/klp-ui/src/views/crm/components/CoilTable.vue index ab16a430..37e1fefa 100644 --- a/klp-ui/src/views/crm/components/CoilTable.vue +++ b/klp-ui/src/views/crm/components/CoilTable.vue @@ -48,6 +48,8 @@ 打印标签 + 数字钢卷 追溯 @@ -168,6 +170,12 @@ export default { this.$refs.labelRender.printLabel(); }) }, + /** 数字钢卷按钮操作 */ + handleDigitalCoilNo(row) { + this.$router.push({ + path: '/wms/coil/' + row.coilId, + }); + }, /** 追溯按钮操作 */ handleTrace(row) { this.trace.open = true; 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 2/2] =?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 @@