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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title></title>
[#include "/business/pages/include/static.html" /]
 
</head>
 
<body class="end_task_body">
<div class="end_task">
         <table>
            <tr>
              <th>工单名称:</th>
              <td >${nodeMsg.NAME}</td>
            </tr>
             <tr>
              <th>退回人:</th>
              <td>${nodeMsg.CURRENT_DEALER_NAME}</td>
              </tr>
             <tr>
              <th>退回时间:</th>
              <td>${DateUtil.format("yyyy-MM-dd HH:mm:ss",nodeMsg.DEALTIME)}</td>
            </tr>
             <tr>
               <th>退回说明:</th>
                 <td id="solveWrap"  width="500px;">
                     <div class="way">
                         ${nodeMsg.DEAL_NOTE}
                     </div>
              </tr>
         </table>
</div>
 
</body>
</html>