From 2d97d9a460b490c112b89897c4505ed9e3348eaa Mon Sep 17 00:00:00 2001 From: "hong.yang" Date: Wed, 21 Jun 2023 14:23:02 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E5=A4=8D=E8=84=9A?= =?UTF-8?q?=E6=9C=AC=E6=95=B0=E6=8D=AE=E9=9B=86=E9=A6=96=E6=AC=A1=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E6=89=A7=E8=A1=8C=E5=8F=82=E6=95=B0=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=9C=AA=E6=AD=A3=E5=B8=B8=E6=98=BE=E7=A4=BA=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复脚本数据集首次点击执行参数列表未正常显示的bug --- data-room-ui/packages/DataSetManagement/src/ScriptEditForm.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data-room-ui/packages/DataSetManagement/src/ScriptEditForm.vue b/data-room-ui/packages/DataSetManagement/src/ScriptEditForm.vue index 842c631b..1573f5a1 100644 --- a/data-room-ui/packages/DataSetManagement/src/ScriptEditForm.vue +++ b/data-room-ui/packages/DataSetManagement/src/ScriptEditForm.vue @@ -667,6 +667,8 @@ export default { this.dataForm.paramsList = res.config.paramsList ? res.config.paramsList : [] this.dataForm.fieldDesc = res.config.fieldDesc this.dataForm.fieldList = res.config.fieldList + + this.paramsListCopy = _.cloneDeep(this.dataForm.paramsList) this.scriptExecute(true) }) },