Browse Source

2026-06-23

机台工作台【异常停机】里的停机代码根据加工中心筛选
master
fengyuan_yang 1 day ago
parent
commit
486701b80c
  1. 5
      src/views/modules/yieldReport/com_produce_down.vue

5
src/views/modules/yieldReport/com_produce_down.vue

@ -251,6 +251,7 @@ export default {
//
init(scheduleData, operatorData) {
console.log(scheduleData)
//
this.scheduleData = scheduleData;
//
@ -328,10 +329,12 @@ export default {
this.tagNo = val
this.$nextTick(() => {
let strVal = "";
let conSql = ''
if (val === 90){
strVal = this.pageData.downTimeCode;
conSql = " and A.workCenter_no = '" + this.scheduleData.workCenterNo + "'"
}
this.$refs.baseList.init(val, strVal)
this.$refs.baseList.init(val, strVal, conSql)
})
},

Loading…
Cancel
Save