From d12705b4f60d350e35e4087e45e54969c12920f7 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 7 Jul 2022 18:07:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A8=E9=87=8F=E4=BC=81=E5=BE=AE=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/oms/apps/develop/AppDeployCustom/list.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) } }) },