|
|
|
@ -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: '确定' |
|
|
|
|