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