Browse Source

2025.06.03 1、 问题编号:100613 问题描述:维修记录没有时间筛选功能

目前换线专家组维修工单、设备维修组维修工单都有维修记录功能
2、	问题编号:200029  问题描述:维保项目清单里的维保项目可以自定义排序,保养方便
维保模板里的维保项目目前不可以自定义排序,点检模板里的点检项目同理,可以参考QMS里的检验模板
java8
jiayang yue 7 months ago
parent
commit
23ce3402af
  1. 4
      src/views/modules/eam/eamWorkOrderForDefect.vue

4
src/views/modules/eam/eamWorkOrderForDefect.vue

@ -2171,9 +2171,9 @@ export default {
shutdownWarranty: row.repairReportingType === '设备故障' ? '是' : '否'
}
// startDatedate
this.detailData.startDate = new Date()
this.detailData.endDate = new Date()
// endDatedate
this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() - 1))
this.detailData.startDate = new Date(new Date().setMonth(new Date().getMonth() - 1))
this.activeTable = 'inspection_form'
this.detailModelFlag = true
},

Loading…
Cancel
Save