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
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>问题基本信息</title>
</head>
 
<body>
[#include "/business/pages/include/static.html" /]
 
       <div id="main">
          [#if orderMsg.TRUE_REASON??]
      <div class="edit_title"><h3>诊断报告(最终版)</h3></div>
              
         <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="2"><span id="suggest" class="infotxt">${orderMsg.SUGGEST}</span></td>
                 <td align="center">[#if RequestParameters.curnodeId == "WTZD"]<div class="drc_btn clearfix">
                 <a class="edit" href="javascript:editZdReport('${orderMsg.ID}',1)">编辑</a></div>[/#if]
             </tr>
         </table>
      [/#if]
   
   
   [#if zdList?? && zdList?size>0]
                [#list zdList as zd] 
    [#if zd.ISTHEEND != 1]
     <div class="edit_title"><h3>诊断报告</h3></div>
              
                    <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="2"><span id="suggest" class="infotxt">${zd.SUGGEST}</span></td>
                            <td align="center"></td>
                        </tr>
                    </table>
                    [/#if]
                 [/#list]
                 
            [#else]
                <div class="loadpos"><span class="nodata"></span></div>
            [/#if]
       
       </div>
</body>
</html>