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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
[#include "/business/pages/include/static.html" /]
[#include "/component/sel.html" /]
<title>配置采集基本信息</title>
</head>
 
<body>
<div class="fs_main fs_edit">
<form id="myform" method="post">
    <div class="edit_title" style="margin-top:20px"><h3>基本信息</h3></div>
    <input type="hidden" id="id" name="id" value="${info.Id}"/>
    <input type="hidden" id="dispatcher_require_date" name="dispatcher_require_date"/>
    <input type="hidden" id="fzr_id" name="fzr_id"/>
    <input type="hidden" id="fzr_name" name="fzr_name"/>
    <input type="hidden" id="note" name="note"/>
    
    <table class="edit_layout basicinfo" width="100%">
        <tr>
            <th><label>${Constants.CUSTOMERNAME}:</label></th>
            <td><span class="infotxt">${info.customer_name}</span></td>
            <th><label>${Constants.SUBORDINATE_UNITS}:</label></th>
            <td><span class="infotxt">${info.sub_customer_name}</span></td>
        </tr>
        
        <tr>
            <th><label>领域名称:</label></th>
            <td><span class="infotxt">${info.project_name}</span></td>
            <th><label>采集类型:</label></th>
            <td><span class="infotxt">${info.collection_type_name}</span></td>
        </tr>
        
        <tr>
            <th><label>联系人:</label></th>
            <td><span class="infotxt">${info.customer_contacts}</span></td>
            
            <th><label>联系方式:</label></th>
            <td><span class="infotxt">${info.customer_contact_info}</span></td>
        </tr>
        
        <tr>
            <th><label>申请人:</label></th>
            <td><span class="infotxt">${info.apply_user_name}</span></td>
            <th><label>申请时间:</label></th>
            <td><span class="infotxt">
                ${DateUtil.format("yyyy-MM-dd HH:mm:ss",info.apply_time)}
            </span></td>
        </tr>
         <tr>
            <th nowrap><label>期望完成时间:</label></th>
            <td><span class="infotxt">
                ${DateUtil.format("yyyy-MM-dd",info.dispatcher_require_date)}
            <td colspan="2">&nbsp;</td>
        </tr>
        
        
        <tr>
            <th><label>申请原因:</label></th>
            <td colspan="3"><span class="infotxt">${StringUtil.str2Html(info.apply_reason)}</span></td>
        </tr>
        
    </table>
    </br>
    <div class="edit_title"><h3>采集对象</h3></div>
    <div class="table_basic">
        <table id="ciList">
             <tr class="title">
                  <td style="width:5%">序号</td>
                  <td style="width:20%">分类</td>
                  <td style="width:10%">数量</td>
                  <td style="width:30%">说明</td>
                  <td style="width:13%">执行人</td>
                  
              </tr>
              
               [#if generalList??&&generalList?size>0]
                   [#list generalList as item]
                   <tr>
                       <td>${item_index+1}</td>
                       <td>${item.THIRD_LEVEL_NAME}</td>
                       <td>${item.CI_NUM}</td>
                       <td>${item.NOTE}</td>
                       <td>${item.EXECUTORS}</td>
                       
                   </tr>
                   [/#list]
               [#else]
                   <td colspan="5" align="center">暂无信息</td>
               [/#if]
              
        </table>
    </div>
</form>
</div>
 
</body>
</html>