cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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]