From ab9ab90ffa13485be7e2bb01b3a8939287d8ef8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Tue, 7 Apr 2026 11:06:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=92=A2=E5=8D=B7=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E7=AE=A1=E7=90=86):=20=E6=96=B0=E5=A2=9E=E4=B8=8A=E4=B8=8B?= =?UTF-8?q?=E6=9D=BF=E9=9D=A2=E5=92=8C=E4=B8=BB=E7=BC=BA=E9=99=B7=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=B9=B6=E5=AE=8C=E5=96=84=E9=92=A2=E5=8D=B7=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在异常表单中增加上下板面选择器和主缺陷复选框 在多个页面表格中新增上下板面和主缺陷字段展示 在异常管理对话框和面板中增加钢卷详细信息展示 优化表单布局和部分字段标签描述 --- klp-ui/src/views/wms/coil/abnormalCoil.vue | 33 +++------ klp-ui/src/views/wms/coil/abnormalDetail.vue | 17 +++-- .../wms/coil/components/AbnormalForm.vue | 20 +++++- .../wms/coil/components/ExceptionManager.vue | 69 +++++++++++++++++- klp-ui/src/views/wms/coil/panels/abnormal.vue | 72 +++++++++++++++++-- .../wms/report/components/coilTable/index.vue | 13 ++-- 6 files changed, 186 insertions(+), 38 deletions(-) diff --git a/klp-ui/src/views/wms/coil/abnormalCoil.vue b/klp-ui/src/views/wms/coil/abnormalCoil.vue index 46255cbe..ebee8307 100644 --- a/klp-ui/src/views/wms/coil/abnormalCoil.vue +++ b/klp-ui/src/views/wms/coil/abnormalCoil.vue @@ -11,7 +11,7 @@ + :limit.sync="coilQuery.pageSize" @pagination="getCoilList" /> - + @@ -79,17 +73,12 @@ - + + + @@ -318,7 +307,7 @@ export default { if (valid) { this.buttonLoading = true; if (this.form.abnormalId != null) { - updateCoilAbnormal({...this.form, length: this.form.endPosition - this.form.startPosition}).then(response => { + updateCoilAbnormal({ ...this.form, length: this.form.endPosition - this.form.startPosition }).then(response => { this.$modal.msgSuccess("修改成功"); this.open = false; this.getList(); @@ -326,7 +315,7 @@ export default { this.buttonLoading = false; }); } else { - addCoilAbnormal({...this.form, length: this.form.endPosition - this.form.startPosition}).then(response => { + addCoilAbnormal({ ...this.form, length: this.form.endPosition - this.form.startPosition }).then(response => { this.$modal.msgSuccess("新增成功"); this.open = false; this.getList(); diff --git a/klp-ui/src/views/wms/coil/abnormalDetail.vue b/klp-ui/src/views/wms/coil/abnormalDetail.vue index e682c920..7ce4527e 100644 --- a/klp-ui/src/views/wms/coil/abnormalDetail.vue +++ b/klp-ui/src/views/wms/coil/abnormalDetail.vue @@ -53,11 +53,14 @@ + + + @@ -66,6 +69,12 @@ + + +