Browse Source

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

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

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

@ -2173,7 +2173,7 @@ export default {
// startDatedate
this.detailData.startDate = new Date()
// endDatedate
this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() + 1))
this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() - 1))
this.activeTable = 'inspection_form'
this.detailModelFlag = true
},

2
src/views/modules/eam/eamWorkOrderForDefect2.vue

@ -2174,7 +2174,7 @@ export default {
// startDatedate
this.detailData.startDate = new Date()
// endDatedate
this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() + 1))
this.detailData.endDate = new Date(new Date().setMonth(new Date().getMonth() - 1))
this.activeTable = 'inspection_form'
this.detailModelFlag = true
},

Loading…
Cancel
Save