|
@@ -37,7 +37,7 @@ const PreviewInspect = (props) => {
|
|
|
<td className={style.assistTableTdFor}><img className={style.imgCheck} src={billing} title={'开单时间'} />{item.time}</td>
|
|
|
<td className={style.assistTableTdFor}>
|
|
|
{
|
|
|
- item.finishDateValue || item.finishDateValue != '' ? (
|
|
|
+ item.finishDateValue ? (
|
|
|
<img className={style.imgCheck} src={report} title={'报告时间'} />
|
|
|
) : null
|
|
|
}
|
|
@@ -62,7 +62,7 @@ const PreviewInspect = (props) => {
|
|
|
<td className={style.assistTableTdFor}><img className={style.imgCheck} src={billing} title={'开单时间'} />{item.time == '' ? dateTime : toTime(item.time)}</td>
|
|
|
<td className={style.assistTableTdFor}>
|
|
|
{
|
|
|
- item.finishDateValue || item.finishDateValue != '' ? (
|
|
|
+ item.finishDateValue ? (
|
|
|
<img className={style.imgCheck} src={report} title={'报告时间'} />
|
|
|
) : null
|
|
|
}
|