@ -169,7 +169,7 @@ export const baseColumns: TableColumnItem[] = [
required: false,
component: 'Select',
componentProps: {
options: stateTypeList,
options: stateTypeList.filter((e) => e.value !== 1),
},
colProps: {
span: 6,
@ -72,6 +72,7 @@ export const baseColumns: TableColumnItem[] = [
hideInSearch: true,
customRender: ({ record }) => {
const text = sexTypeList.find((e) => e.value === record.sex)?.label;
return <div>{text}</div>;