cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
[#if reports?? && reports?size>0]
[#list reports as report]
<section class="worklist clearfix" [#if report.state == 1]onclick="window.location.href='${base}/ewyw/ewWorkplan/ewAddDailyCheck.html?id=${report.ID}&add=1'"[#else]onclick="window.location.href='${base}/ewyw/ewWorkplan/ewDailyInfo.html?id=${report.ID}'"[/#if]>
      <h2>
          <label>${Constants.getRCXJ_FLOW(report.state)}</label>
         填报日期: ${DateUtil.format("yyyy-MM-dd",report.patrol_date)}
      </h2>
      <div class="worklistcon clearfix">
          <span class="daily" ></span>
          <p>${Constants.CUSTOMER_CONSTANTS}名称:${report.cus_name}</p>
          <p>${Constants.UNIT_CONSTANTS}:${report.sub_cus_name}</p>
          <p>填报人:<em>${report.user_name}</em></p>
      </div>
</section>
[/#list]
[#else]
<div class="nodate">暂无巡检报告</div>
[/#if]