wyq 3 年之前
父節點
當前提交
e4b40fba8e
共有 1 個文件被更改,包括 2 次插入2 次删除
  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
                   }