Browse Source

2026-06-26

优化
master
fengyuan_yang 1 month ago
parent
commit
dc70430ebe
  1. 4
      src/views/modules/yieldReport/com_defect_roll.vue
  2. 4
      src/views/modules/yieldReport/com_separate_roll.vue

4
src/views/modules/yieldReport/com_defect_roll.vue

@ -528,10 +528,12 @@ export default {
this.tagNo = val this.tagNo = val
this.$nextTick(() => { this.$nextTick(() => {
let strVal = ""; let strVal = "";
let conSql = "";
if (val === 89){ if (val === 89){
strVal = this.pageData.defectCode; strVal = this.pageData.defectCode;
conSql = " and A.workCenter_no = '" + this.scheduleData.workCenterNo + "'"
} }
this.$refs.baseList.init(val, strVal)
this.$refs.baseList.init(val, strVal, conSql)
}) })
}, },

4
src/views/modules/yieldReport/com_separate_roll.vue

@ -1007,10 +1007,12 @@ export default {
this.tagNo = val this.tagNo = val
this.$nextTick(() => { this.$nextTick(() => {
let strVal = '' let strVal = ''
let conSql = ''
if (val === 89) { if (val === 89) {
strVal = this.rollDefectForm.defectCode || '' strVal = this.rollDefectForm.defectCode || ''
conSql = " and A.workCenter_no = '" + this.scheduleData.workCenterNo + "'"
} }
this.$refs.baseList.init(val, strVal)
this.$refs.baseList.init(val, strVal, conSql)
}) })
}, },

Loading…
Cancel
Save