From acfee00db382125bdac7bc03bc6bbdd2979675f4 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Mon, 30 Jan 2023 15:35:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20API=20=E6=95=B0=E6=8D=AE=E9=A2=84?= =?UTF-8?q?=E8=A7=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/system/datasource/DsConfiguration.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/system/datasource/DsConfiguration.vue b/frontend/src/views/system/datasource/DsConfiguration.vue index 3e21ec1058..9d52574195 100644 --- a/frontend/src/views/system/datasource/DsConfiguration.vue +++ b/frontend/src/views/system/datasource/DsConfiguration.vue @@ -1302,16 +1302,16 @@ export default { }, handleCheckAllChange(apiItem, row, ref) { this.errMsg = [] - this.handleCheckChange(apiItem, row) - apiItem.fields = [] - this.handleFiledChange(apiItem, row) + this.handleCheckChange(this.apiItem, row) + this.apiItem.fields = [] + this.handleFiledChange(this.apiItem, row) if(ref === 'plxTable'){ this.$nextTick(() => { this.$refs.plxTable?.reloadData(this.previewData(this.apiItem)) }) }else { this.$nextTick(() => { - this.$refs.originPlxTable?.reloadData(this.previewData(this.originFieldItem)) + this.$refs.originPlxTable?.reloadData(this.previewData(this.apiItem)) }) }