图斑汇总查询条件修改

dianlixunjian
刘妍 2024-07-10 17:26:35 +08:00
parent ca97409adf
commit 98c1853c24
1 changed files with 5 additions and 5 deletions

View File

@ -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 },
],
},
},