|
@@ -73,7 +73,7 @@ export const tableColumns: BasicColumn[] = [
|
|
|
width: 80,
|
|
|
},
|
|
|
{
|
|
|
- title: '状态',
|
|
|
+ title: '报到状态',
|
|
|
dataIndex: 'isReport',
|
|
|
customRender: ({ record }) => {
|
|
|
if (!Reflect.has(record, 'pendingStatus')) {
|
|
@@ -81,8 +81,8 @@ export const tableColumns: BasicColumn[] = [
|
|
|
}
|
|
|
return h(Switch, {
|
|
|
checked: record.isReport === 1,
|
|
|
- checkedChildren: '报到',
|
|
|
- unCheckedChildren: '未报到',
|
|
|
+ // checkedChildren: '报到',
|
|
|
+ // unCheckedChildren: '未报到',
|
|
|
loading: record.pendingStatus,
|
|
|
onChange(checked: boolean) {
|
|
|
record.pendingStatus = true;
|