From c69576f6eef4e6a391cdd8f51437816c77422c26 Mon Sep 17 00:00:00 2001 From: qiankanghui <11284155+qian-kanghui@user.noreply.gitee.com> Date: Sat, 7 Mar 2026 17:26:15 +0800 Subject: [PATCH] =?UTF-8?q?feat(eamReport):=20=E6=B7=BB=E5=8A=A0=E6=8A=A5?= =?UTF-8?q?=E4=BF=AE=E6=96=B9=E5=BC=8F=E5=92=8C=E6=95=85=E9=9A=9C=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E7=AD=9B=E9=80=89=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在缺陷记录页面添加报修方式下拉选择框,支持设备故障和TPM红牌选项 - 添加故障时间范围筛选功能,包括开始时间和结束时间选择器 - 调整日期选择器样式,统一宽度为100px,箭头大小为16px - 修复groupID转大写时的空值错误,添加非空判断条件 - 在工作订单详情中添加故障时间筛选功能 - 扩展搜索数据结构,添加repairReportingType、createdStartDate和createdEndDate字段 - 配置表格列显示报修方式字段信息 --- .../modules/eam/eamWorkOrderForDefect2.vue | 29 +++++++- .../modules/eamReport/eamDefectRecord.vue | 70 ++++++++++++++++--- 2 files changed, 90 insertions(+), 9 deletions(-) diff --git a/src/views/modules/eam/eamWorkOrderForDefect2.vue b/src/views/modules/eam/eamWorkOrderForDefect2.vue index 2459fca..0ac7007 100644 --- a/src/views/modules/eam/eamWorkOrderForDefect2.vue +++ b/src/views/modules/eam/eamWorkOrderForDefect2.vue @@ -63,6 +63,31 @@ placeholder="选择日期"> + + + + + + + + + + + @@ -825,7 +850,9 @@ export default { searchData: { deep: true, handler: function (newV, oldV) { - this.searchData.groupID = this.searchData.groupID.toUpperCase() + if (this.searchData.groupID) { + this.searchData.groupID = this.searchData.groupID.toUpperCase() + } } }, "detailData.actualDate"(newV, oldV) { diff --git a/src/views/modules/eamReport/eamDefectRecord.vue b/src/views/modules/eamReport/eamDefectRecord.vue index 61d5d36..86da283 100644 --- a/src/views/modules/eamReport/eamDefectRecord.vue +++ b/src/views/modules/eamReport/eamDefectRecord.vue @@ -11,6 +11,12 @@ + + + + + + @@ -40,9 +46,34 @@ + + + + + + + + + + + - - + + - - + +