|
@@ -106,11 +106,11 @@ function FieldProblem() {
|
|
|
...data,
|
|
|
...value,
|
|
|
}
|
|
|
- setDate({solveTimeStart:value.solveTimeStart,solveTimeEnd:value.solveTimeEnd})
|
|
|
+ setDate({ solveTimeStart: value.solveTimeStart, solveTimeEnd: value.solveTimeEnd })
|
|
|
setCurrent(1)
|
|
|
setParams(param)
|
|
|
getColumnResultPage(param);
|
|
|
- getColumnResultNumber({solveTimeStart:value.solveTimeStart,solveTimeEnd:value.solveTimeEnd})
|
|
|
+ getColumnResultNumber({ solveTimeStart: value.solveTimeStart, solveTimeEnd: value.solveTimeEnd })
|
|
|
};
|
|
|
const onReset = () => {
|
|
|
setCurrent(1)
|
|
@@ -138,7 +138,11 @@ function FieldProblem() {
|
|
|
{ title: '字段名称(中文)', dataIndex: 'columnCname', key: 'columnCname' },
|
|
|
{ title: '字段名称(英文)', dataIndex: 'columnEname', key: 'columnEname' },
|
|
|
{ title: '上传字段值', dataIndex: 'tableVal', key: 'tableVal' },
|
|
|
- { title: '备注', dataIndex: 'description', key: 'description' },
|
|
|
+ {
|
|
|
+ title: '备注', dataIndex: 'description', key: 'description', render: (text, record) => {
|
|
|
+ return record.description.length > 20 ? <span title={record.description}>{record.description.substring(0, 20) + '...'}</span> : record.description;
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
title: '问题类型', dataIndex: 'type', render: (text, record) => {
|
|
|
return record.type == 1 ? "数据缺失" : record.type == 2 ? "非标准值" : "正则校验失败";
|
|
@@ -147,7 +151,7 @@ function FieldProblem() {
|
|
|
{ title: '更新时间', dataIndex: 'auditTime', key: 'auditTime' },
|
|
|
{
|
|
|
title: '状态', dataIndex: 'isRequired', key: 'isRequired', render: (text, record) => {
|
|
|
- return record.isSolved == 1 ? "已解决" : record.isSolved == 0 ? "未解决" :"-";
|
|
|
+ return record.isSolved == 1 ? "已解决" : record.isSolved == 0 ? "未解决" : "-";
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -181,22 +185,22 @@ function FieldProblem() {
|
|
|
</Col>
|
|
|
<Col span={5} key={1}>
|
|
|
<Form.Item label="住院序号" name="behospitalCode">
|
|
|
- <Input placeholder="住院序号" autoComplete='off' maxLength='30'/>
|
|
|
+ <Input placeholder="住院序号" autoComplete='off' maxLength='30' />
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={5} key={2}>
|
|
|
<Form.Item label="文书编号" name="recId">
|
|
|
- <Input placeholder="文书编号" autoComplete='off' maxLength='30'/>
|
|
|
+ <Input placeholder="文书编号" autoComplete='off' maxLength='30' />
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={5} key={3}>
|
|
|
<Form.Item label="文书标题" name="recTitle">
|
|
|
- <Input placeholder="文书标题" autoComplete='off' maxLength='30'/>
|
|
|
+ <Input placeholder="文书标题" autoComplete='off' maxLength='30' />
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={5} key={4}>
|
|
|
<Form.Item label="质控模块名称" name="modeName">
|
|
|
- <Input placeholder="质控模块名称" autoComplete='off' maxLength='30'/>
|
|
|
+ <Input placeholder="质控模块名称" autoComplete='off' maxLength='30' />
|
|
|
</Form.Item>
|
|
|
</Col>
|
|
|
<Col span={5} key={5}>
|