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
[#if customers?? && customers?size>0 ]
<table class="display_form common_list_table">
        <tr class="title">
            <td width="5%"><span>序号</span></td>
            <td width="15%">${Constants.UNIT_CONSTANTS} </td>
            <td width="50%">联系人</td>
            <td width="10%">联系电话</td>
            <td width="10%">操作</td>
        </tr>
        [#list customers as customer]
        <tr>
            <td><span class="serial">${customer_index+1}</span></td>
            <td>${customer.CUSTOMER_NAME}</td>
            <td>${customer.CONTACT}</td>
            <td>${customer.PHONE}</td>
            <td class="list_btnmore_wrap">
                <a class="blue_txt" target="_blank" href="${base}/business/pages/ciremind/orderdeal/cusItemPlanReport.html?customerId=${customerId}&subCustomerId=${customer.ID}"><span>查看计划</span></a>
            </td>
        </tr>
      [/#list]  
       </table>
       [#else]
       <div class="loadpos"><span class="nodata"></span></div>
       [/#if]