@@ -67,16 +67,32 @@ const columns: ColumnProps[] = [ | |||||
label: "姓名" | label: "姓名" | ||||
}, | }, | ||||
{ | { | ||||
prop: "personId", | |||||
label: "人员ID" | |||||
prop: "personSetName", | |||||
label: "所属班级", | |||||
}, | |||||
{ | |||||
prop: "gender", | |||||
label: "性别", | |||||
enum: [ | |||||
{ | |||||
label: "男", | |||||
value: "GENDER_MALE" | |||||
}, | |||||
{ | |||||
label: "女", | |||||
value: "GENDER_FEMALE" | |||||
}], | |||||
}, | }, | ||||
{ | { | ||||
prop: "phone", | prop: "phone", | ||||
label: "手机号" | label: "手机号" | ||||
}, | }, | ||||
{ | { | ||||
prop: "personSetName", | |||||
label: "所属班级", | |||||
prop: "age", | |||||
label: "年龄", | |||||
render: scope => { | |||||
return scope.row.age ? scope.row.age : '--'; | |||||
} | |||||
}, | }, | ||||
{ prop: "operation", label: "操作", width: 250, fixed: "right" } | { prop: "operation", label: "操作", width: 250, fixed: "right" } | ||||
]; | ]; | ||||