wyq 3 rokov pred
rodič
commit
e4b40fba8e

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