cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[#if data.DATALIST?? && data.DATALIST?size>0]
    [#list data.DATALIST as order]
                 <dl>
                     <dt>${order_index+1}.
                         [#if type == '${FullTextConstants.knowledge}']
                             <a href="${base}/business/pages/knowledge/knowledgeMain/knowledgeWkCxDetail.html?id=${order.business_id}" target="_blank">${order.title}</a>
                         [#else]
                             <a  href="${base}/business/pages/order/orderInfo.html?orderId=${order.business_id}&flowId=${order.flow_id}&orderType=${order.small_category}" target="_blank">${order.title}</a>
                         [/#if]
                     </dt>
                     <dd>${order.content}</dd>
                 </dl>
     [/#list]
 <input type="hidden" value="${data.total}" class="rsNum" />
[#else]
 <input type="hidden" value="0" class="rsNum" />
<div class="loadpos"><span class="nodata"></span></div>
[/#if]