wyq 3 jaren geleden
bovenliggende
commit
e4b40fba8e
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      src/components/PreviewBody/Inspect/index.jsx

+ 2 - 2
src/components/PreviewBody/Inspect/index.jsx

@@ -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
                   }