cy
2022-06-22 6e06bba1c89f8077e29d0fbf0ce12f89f027d8d2
1
2
3
4
5
6
7
8
9
10
11
12
13
[#if info?? && info.datas?? && info.datas?size>0]
[#list info.datas as cus]  
<section class="worklist clearfix" onclick="window.location.href='${base}/ewyw/ewKnowledge/ewcompanyfirst.html?cusId=${cus.ID}'">
    <div class="worklistcon clearfix">
        <span class="custom">${Constants.CUSTOMER_CONSTANTS}知识</span>
        <p>${Constants.CUSTOMER_CONSTANTS}名称:${cus.CUSTOMER_NAME}</p>
        <p>${Constants.CUSTOMER_CONSTANTS}简称:${cus.SHORT_NAME}</p>
        <p>手机号码:${cus.PHONE}</p>
    </div>
</section>
[/#list]
[/#if]