|
@@ -18,7 +18,6 @@ const PreviewInspect = (props) => {
|
|
|
|
|
|
{
|
|
|
dataJson && dataJson.labelListSmall && dataJson.labelListSmall.map((item) => {
|
|
|
- // console.log(item, item,'=====');
|
|
|
return (
|
|
|
<tr className={style.assistTableTrSec}>
|
|
|
<td className={style.assistTableTdFst} title={item.detailName}>{item.detailName}</td>
|
|
@@ -40,11 +39,15 @@ const PreviewInspect = (props) => {
|
|
|
<td className={style.assistTableTdFor}><img className={style.imgCheck} src={billing} title={'开单时间'} />{item.time}</td>
|
|
|
<td className={style.assistTableTdFor}>
|
|
|
{
|
|
|
- item.finishDateValue ? (
|
|
|
- <img className={style.imgCheck} src={report} title={'报告时间'} />
|
|
|
- ) : null
|
|
|
+ item.check ? (
|
|
|
+ null
|
|
|
+ ) : <img className={style.imgCheck} src={report} title={'报告时间'} />
|
|
|
+ }
|
|
|
+ {
|
|
|
+ item.check ? (
|
|
|
+ null
|
|
|
+ ) : item.finishDateValue
|
|
|
}
|
|
|
- {item.finishDateValue}
|
|
|
</td>
|
|
|
</tr>
|
|
|
// </table>
|
|
@@ -65,11 +68,16 @@ 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 ? (
|
|
|
- <img className={style.imgCheck} src={report} title={'报告时间'} />
|
|
|
- ) : null
|
|
|
+ item.check ? (
|
|
|
+ null
|
|
|
+ ) : <img className={style.imgCheck} src={report} title={'报告时间'} />
|
|
|
+ }
|
|
|
+ {
|
|
|
+ item.check ? (
|
|
|
+ null
|
|
|
+ ) : item.finishDateValue
|
|
|
}
|
|
|
- {item.finishDateValue}
|
|
|
+
|
|
|
</td>
|
|
|
</tr>
|
|
|
// </table>
|