From 9835af61bf7b6dc1de1a7a31c3e57493b726f992 Mon Sep 17 00:00:00 2001 From: yaojn Date: Tue, 28 Oct 2025 14:27:24 +0800 Subject: [PATCH] =?UTF-8?q?=20=20-=20[=E4=BF=AE=E5=A4=8D]=E8=A1=A8?= =?UTF-8?q?=E6=A0=BC=E8=BE=93=E5=85=A5=E7=BB=84=E4=BB=B6=E8=81=94=E5=8A=A8?= =?UTF-8?q?=E8=A7=84=E5=88=99=E7=BC=BA=E5=B0=91=E9=9A=90=E8=97=8F=E5=92=8C?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=96=B9=E6=B3=95=20=20=20=20-=20[=E5=85=B3?= =?UTF-8?q?=E8=81=94]#[1542030071660544]=E8=A1=A8=E6=A0=BC=E8=BE=93?= =?UTF-8?q?=E5=85=A5=E7=BB=84=E4=BB=B6=E8=81=94=E5=8A=A8=E8=A7=84=E5=88=99?= =?UTF-8?q?=E7=BC=BA=E5=B0=91=E9=9A=90=E8=97=8F=E5=92=8C=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E6=96=B9=E6=B3=95=20http://192.168.0.96:8090/demo/rdm.html#/bu?= =?UTF-8?q?g-detail/939050947543040/939050947543057/1542030071660544?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../form/component/formtableinputer/column-item.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/resources/plugins/TsSheet/form/component/formtableinputer/column-item.vue b/src/resources/plugins/TsSheet/form/component/formtableinputer/column-item.vue index 5b5de235..71a9e5ae 100644 --- a/src/resources/plugins/TsSheet/form/component/formtableinputer/column-item.vue +++ b/src/resources/plugins/TsSheet/form/component/formtableinputer/column-item.vue @@ -379,6 +379,14 @@ export default { } return false; }, + hideFormItem() { + this.$set(this.formItem.config, 'isHide', true); + this.currentItemReaction.currentItemHide = true; + }, + showFormItem() { + this.$set(this.formItem.config, 'isHide', false); + this.currentItemReaction.currentItemHide = false; + }, //验证配置是否完整 validConfig() { if (this.$refs['formItem']) { -- Gitee