From a400c6e239eef4085289235bca2575e8b89d696d Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Tue, 30 Aug 2022 14:19:30 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E5=AD=97=E6=AE=B5=E5=BF=85=E5=A1=AB?= =?UTF-8?q?=E6=A0=A1=E9=AA=8C=E5=87=BA=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/project/template/CustomFiledComponent.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/business/components/project/template/CustomFiledComponent.vue b/frontend/src/business/components/project/template/CustomFiledComponent.vue index 97ca0e0d45..47b0547daf 100644 --- a/frontend/src/business/components/project/template/CustomFiledComponent.vue +++ b/frontend/src/business/components/project/template/CustomFiledComponent.vue @@ -170,6 +170,9 @@ export default { return item.system ? this.$t(item.text) : item.text; }, handleChange() { + if (this.form) { + this.$set(this.form, this.data.name, this.data[this.prop]); + } this.$forceUpdate(); }, }