Browse Source

2024-06-25

功能优化
java8
fengyuan_yang 2 years ago
parent
commit
360aad41af
  1. 8
      src/views/modules/qc/FAIResultEntry.vue
  2. 8
      src/views/modules/qc/FQCResultEntry.vue
  3. 8
      src/views/modules/qc/IPQCResultEntry.vue
  4. 8
      src/views/modules/qc/IQCResultEntry.vue

8
src/views/modules/qc/FAIResultEntry.vue

@ -3382,8 +3382,12 @@
}
getFAIItemObjectList(this.actionData).then(({data}) => {
if (data && data.code === 0) {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
if (data.rows.length === 0) {
this.actionModal2()
} else {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
}
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'

8
src/views/modules/qc/FQCResultEntry.vue

@ -3356,8 +3356,12 @@
}
getFQCItemObjectList(this.actionData).then(({data}) => {
if (data && data.code === 0) {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
if (data.rows.length === 0) {
this.actionModal2()
} else {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
}
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'

8
src/views/modules/qc/IPQCResultEntry.vue

@ -3421,8 +3421,12 @@
}
getIPQCItemObjectList(this.actionData).then(({data}) => {
if (data && data.code === 0) {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
if (data.rows.length === 0) {
this.actionModal2()
} else {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
}
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'

8
src/views/modules/qc/IQCResultEntry.vue

@ -2232,8 +2232,12 @@
}
getIQCItemObjectList(this.actionData).then(({data}) => {
if (data && data.code === 0) {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
if (data.rows.length === 0) {
this.actionModal2()
} else {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
}
} else {
this.$alert(data.msg, '错误', {
confirmButtonText: '确定'

Loading…
Cancel
Save