From 2a7be08388a66ee80f8ef2bcd9a17d7c15f83287 Mon Sep 17 00:00:00 2001 From: yaojn Date: Wed, 2 Jul 2025 16:59:05 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=E5=9C=A8TsForm?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=B8=8A=E6=B7=BB=E5=8A=A0=E5=8F=AA=E8=AF=BB?= =?UTF-8?q?=E5=92=8C=E7=A6=81=E7=94=A8=E5=B1=9E=E6=80=A7=E4=B8=8D=E7=94=9F?= =?UTF-8?q?=E6=95=88=E9=97=AE=E9=A2=98=EF=BC=8C=E5=8F=AA=E8=83=BD=E9=80=9A?= =?UTF-8?q?=E8=BF=87item-list=E8=AE=BE=E7=BD=AE=E5=8F=AA=E8=AF=BB=E7=A6=81?= =?UTF-8?q?=E7=94=A8=E5=B1=9E=E6=80=A7=E6=89=8D=E7=94=9F=E6=95=88=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/resources/plugins/TsForm/TsForm.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/resources/plugins/TsForm/TsForm.vue b/src/resources/plugins/TsForm/TsForm.vue index b4fd01a4..3baf0ed2 100755 --- a/src/resources/plugins/TsForm/TsForm.vue +++ b/src/resources/plugins/TsForm/TsForm.vue @@ -303,6 +303,8 @@ export default { //主要用来回显input框的数据 item.width = item.width || _this.width; item.theme = _this.$utils.deepClone(_this.theme); + item.readonly = item.readonly || _this.readonly; + item.disabled = item.disabled || _this.disabled; $handler = h(ITEMTYPELIST[item.type], { key: item.name, props: item, -- Gitee