From 43b9793d0e1a489306b8daf3ff51b31f1ee995fc Mon Sep 17 00:00:00 2001 From: Charles7c Date: Thu, 13 Mar 2025 21:18:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(system/client):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E6=B7=BB=E5=8A=A0=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/client/ClientAddModal.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/system/client/ClientAddModal.vue b/src/views/system/client/ClientAddModal.vue index f9d4ed6..751dae2 100644 --- a/src/views/system/client/ClientAddModal.vue +++ b/src/views/system/client/ClientAddModal.vue @@ -83,6 +83,7 @@ const columns: ColumnItem[] = reactive([ field: 'authType', type: 'select', required: true, + span: 12, props: { options: auth_type_enum, multiple: true, @@ -93,6 +94,7 @@ const columns: ColumnItem[] = reactive([ label: '终端类型', field: 'clientType', type: 'select', + span: 12, props: { options: client_type, }, @@ -106,6 +108,7 @@ const columns: ColumnItem[] = reactive([ ), field: 'activeTimeout', type: 'input-number', + span: 12, slots: { append: () => ( @@ -125,6 +128,7 @@ const columns: ColumnItem[] = reactive([ ), field: 'timeout', type: 'input-number', + span: 12, slots: { append: () => ( @@ -140,6 +144,7 @@ const columns: ColumnItem[] = reactive([ field: 'status', type: 'radio-group', required: true, + span: 24, props: { type: 'button', options: DisEnableStatusList,