From cc3886d38e5ac12861445466d286bd6d3861a693 Mon Sep 17 00:00:00 2001 From: zhangyu Date: Tue, 13 Jul 2021 11:32:21 +0800 Subject: [PATCH] =?UTF-8?q?NEZ-814=20fix=EF=BC=9A=20=E4=BF=AE=E6=94=B9asse?= =?UTF-8?q?t=20label=20multitext=20=E7=B1=BB=E5=9E=8B=20=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/common/rightBox/assetMetaBox.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/nezha-fronted/src/components/common/rightBox/assetMetaBox.vue b/nezha-fronted/src/components/common/rightBox/assetMetaBox.vue index 16dbe383b..68165b1a3 100644 --- a/nezha-fronted/src/components/common/rightBox/assetMetaBox.vue +++ b/nezha-fronted/src/components/common/rightBox/assetMetaBox.vue @@ -379,7 +379,18 @@ export default { }, selectType (val, init) { if (init) { - this.showParam = true + switch (val) { + case 'RADIO' : + case 'CHECKBOX' : + case 'SELECT' : + case 'DATETIME' : + case 'DOUBLE' : + this.showParam = true + break + default: + this.showParam = false + break + } } else { if (this.ready) { switch (val) {