From 5c3ca9a2cff2c8ad004911692e49029b66a777ba Mon Sep 17 00:00:00 2001 From: Seven Date: Sat, 24 Jan 2026 18:01:06 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E8=BF=87=E6=BB=A4?= =?UTF-8?q?=E5=99=A8=E5=88=97=EF=BC=8C=E6=9B=BF=E6=8D=A2=E5=9B=A2=E9=98=9F?= =?UTF-8?q?=E5=B1=82=E7=BA=A7=E4=B8=BA=E6=98=AF=E5=90=A6=E5=90=AF=E7=94=A8?= =?UTF-8?q?=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wallet/index.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/wallet/index.vue b/src/views/wallet/index.vue index a1d132d..6102d11 100644 --- a/src/views/wallet/index.vue +++ b/src/views/wallet/index.vue @@ -165,15 +165,15 @@ const columns: TableBaseColumns = [ const filterColumns: TableFilterColumns = [ { - key: 'depth', - title: '团队层级', + key: 'isActive', + title: '是否启用', component: NSelect, componentProps: { options: [ - { label: '一级', value: '1' }, - { label: '二级', value: '2' }, - { label: '三级', value: '3' } - ] + { label: '是', value: true }, + { label: '否', value: false } + ], + clearable: true } } ];