修改样式
This commit is contained in:
parent
d10e3a02f2
commit
d16b315351
|
|
@ -21,12 +21,12 @@ export const columns: BasicColumn[] = [
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '性别',
|
title: '长者性别',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'sex',
|
dataIndex: 'sex',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '年龄',
|
title: '长者年龄',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'age',
|
dataIndex: 'age',
|
||||||
},
|
},
|
||||||
|
|
@ -57,6 +57,7 @@ export const auditHisColumns: BasicColumn[] = [
|
||||||
title: 'NUID',
|
title: 'NUID',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'nuId',
|
dataIndex: 'nuId',
|
||||||
|
width: 100,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '护理单元',
|
title: '护理单元',
|
||||||
|
|
@ -67,6 +68,7 @@ export const auditHisColumns: BasicColumn[] = [
|
||||||
title: '长者姓名',
|
title: '长者姓名',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
|
width: 100,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '性别',
|
title: '性别',
|
||||||
|
|
@ -84,6 +86,7 @@ export const auditHisColumns: BasicColumn[] = [
|
||||||
title: '监护人姓名',
|
title: '监护人姓名',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'guardianName',
|
dataIndex: 'guardianName',
|
||||||
|
width: 100,
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// title: '关系',
|
// title: '关系',
|
||||||
|
|
@ -94,6 +97,17 @@ export const auditHisColumns: BasicColumn[] = [
|
||||||
title: '监护人电话',
|
title: '监护人电话',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'guardianPhone',
|
dataIndex: 'guardianPhone',
|
||||||
|
width: 140,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '审核类型',
|
||||||
|
align: 'center',
|
||||||
|
dataIndex: 'guardianPhone',
|
||||||
|
customRender: function ({ text }) {
|
||||||
|
return '变更';
|
||||||
|
},
|
||||||
|
width: 100,
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '审核时间',
|
title: '审核时间',
|
||||||
|
|
|
||||||
|
|
@ -154,14 +154,14 @@ function getTableAction(record) {
|
||||||
label: '详情',
|
label: '详情',
|
||||||
onClick: handleDetail.bind(null, record),
|
onClick: handleDetail.bind(null, record),
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
label: '护理流程',
|
// label: '护理流程',
|
||||||
onClick: handleHllc.bind(null, record),
|
// onClick: handleHllc.bind(null, record),
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
label: '优先派单',
|
// label: '优先派单',
|
||||||
onClick: handleAssignCaregiver.bind(null, record),
|
// onClick: handleAssignCaregiver.bind(null, record),
|
||||||
}
|
// }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue