From 98c1853c2465acc93028aade610725ef0a25f5bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=A6=8D?= <1455167345@qq.com> Date: Wed, 10 Jul 2024 17:26:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BE=E6=96=91=E6=B1=87=E6=80=BB=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E6=9D=A1=E4=BB=B6=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demo/statistical/patchsummary/patchsummary.data.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/demo/statistical/patchsummary/patchsummary.data.ts b/src/views/demo/statistical/patchsummary/patchsummary.data.ts index 1a86e2fb..c8303cfa 100644 --- a/src/views/demo/statistical/patchsummary/patchsummary.data.ts +++ b/src/views/demo/statistical/patchsummary/patchsummary.data.ts @@ -53,7 +53,7 @@ export const columns: BasicColumn[] = [ }, { title: '判定结果', - dataIndex: 'typename', + dataIndex: 'isIllegalname', }, { title: '当前状态', @@ -133,15 +133,15 @@ export const searchFormSchema: FormSchema[] = [ }, }, { - field: 'typename', + field: 'isIllegal', label: '判定结果', component: 'Select', colProps: { span: 4 }, componentProps: { options: [ - { label: '合法', value: '合法' }, - { label: '违法', value: '违法' }, - { label: '其他', value: '其他' }, + { label: '合法', value: 0 }, + { label: '违法', value: 1 }, + { label: '其他', value: 2 }, ], }, },