cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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
[#if info?? && info.datas?? && info.datas?size>0]
<table class="display_form common_list_table">
    <tr class="title">
        <td width="10%">序号</td>
        <td width="15%">项目名称</td>
        <td width="15%">项目简称</td>
        <td width="15%">运维经理</td>
        <td width="15%">备件更换数</td>
        <td width="15%">备件合计费用(元)</td>
        <td width="15%">操作</td>
    </tr>
    [#list info.datas as item]
        <tr>
            <td>${info.rowNum+item_index+1}</td>
            <td>${item.customer_name}</td>
            <td>${item.short_name}</td>
            <td>${item.ywjl_name}</td>
            <td>${item.use_num}</td>
            <td>${item.sum_money}</td>
            <td><a class="blue_txt" href="javascript:detail('${item.id}')">备件更换明细</a></td>
        </tr>
    [/#list]
</table>
[#else]
<div class="loadpos"><span class="nodata"></span></div>
[/#if]