diff --git a/project/oms/apps/develop/AppDeployCustom/list.vue b/project/oms/apps/develop/AppDeployCustom/list.vue index 26949980..56f79c8f 100644 --- a/project/oms/apps/develop/AppDeployCustom/list.vue +++ b/project/oms/apps/develop/AppDeployCustom/list.vue @@ -118,7 +118,7 @@ export default { this.$message.error("打包失败!") } else if (row.count % 2 == 0 && row.target) { row.count++ - } else this.getRowById(row).then(v => { + } else this.getRowById(row.id).then(v => { if (v.error) { clearInterval(timer[id]) this.$message.error("打包失败!") @@ -152,7 +152,7 @@ export default { if (res?.code == 0) { clearInterval(this.timer[id]) row.count = 0 - this.getRowById(row).then(v => this.refreshRow(row, v)) + this.getRowById(row.id).then(v => this.refreshRow(row, v)) } }) },