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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
   [#if orderMsg.TRUE_REASON??]
      <div class="edit_title"><h3>诊断报告(最终版)</h3> [#if RequestParameters.curnodeId == "WTZD"]<div class="drc_btn clearfix program_zdbgedit">
                 <a class="edit" href="javascript:editZdReport('${orderMsg.ID}',1)">编辑</a></div>[/#if]
                  </div>
      
           <div class="deal_record_con" style="border-top:0px;">
         <table class="edit_layout basicinfo" width="100%">
             <tr>
                 <th class="postop" width="100px"><label>发生原因:</label></th>
                 <td colspan="3"><span id="reason" class="infotxt">${orderMsg.TRUE_REASON}</span></td>
             </tr>
             <tr>
                 <th class="postop"><label>解决方案:</label></th>
                 <td colspan="3"><span id="resolve" class="infotxt">${orderMsg.RESOLVE}</span></td>
             </tr>
             <tr>
                 <th class="postop"><label>优化建议:</label></th>
                 <td colspan="3"><span id="suggest" class="infotxt">${orderMsg.SUGGEST}</span></td>
             </tr>
         </table>
        </div>
   [/#if]
   
   [#if zdList?? && zdList?size>0]
                [#list zdList as zd] 
    [#if zd.ISTHEEND != 1]
     <div class="edit_title"><h3>诊断报告</h3>[#if userId == zd.CREATE_USER_ID]<div class="drc_btn clearfix program_zdbgedit">
                    <a class="edit" href="javascript:editZdReport('${zd.ID}',2)">编辑</a>
                    <a class="delete deleteBtn" recordId="${zd.ID}">删除</a></div>[/#if]
             <div class="deal_record_con" style="border-top:0px;">
                    <table class="edit_layout basicinfo" width="100%">
                        <tr>
                            <th class="postop" width="100px"><label>发生原因:</label></th>
                            <td colspan="3"><span id="reason" class="infotxt">${zd.REASON}</span></td>
                        </tr>
                        <tr>
                            <th class="postop"><label>解决方案:</label></th>
                            <td colspan="3"><span id="resolve" class="infotxt">${zd.RESOLVE}</span></td>
                        </tr>
                        <tr>
                            <th class="postop"><label>优化建议:</label></th>
                            <td colspan="3"><span id="suggest" class="infotxt">${zd.SUGGEST}</span></td>
                        </tr>
                    </table>
                    
                     </div>
                    [/#if]
                 [/#list]
                 
            [#else]
                <div class="loadpos"><span class="nodata"></span></div>
            [/#if]