|
<div class="ntt_title"><span></span><a title="${cus.CUSTOMER_NAME}" href="${base}/business/pages/customerconfig/cussub/subCusList.html?customerId=${RequestParameters.customerId}&level=1" target="myiframe">${cus.CUSTOMER_NAME}</a></div>
|
<div class="three_tree">
|
[#if cus.subs?? && cus.subs?size>0]
|
<ul>
|
[#list cus.subs as cate]
|
<li [#if firstCate?? && firstCate != cate.ID] class="firstTree"[#else] class="cur firstTree"[/#if]><span></span><a href="${base}/business/pages/customerconfig/cussub/subCusList.html?pId=${cate.ID}&customerId=${RequestParameters.customerId}&level=2" target="myiframe">${cate.CUSTOMER_NAME}</a>
|
[#if cate.ejTree?? && cate.ejTree?size>0]
|
<ul class="secondTree" [#if firstCate?? && firstCate != cate.ID] style="display:none;"[/#if]>
|
[#list cate.ejTree as ej]
|
<li ><span class="last" ></span><a >${ej.CUSTOMER_NAME}</a>
|
</li>
|
[/#list]
|
</ul>
|
[/#if]
|
</li>
|
[/#list]
|
</ul>
|
[#else]
|
<div class="loadpos"><span class="nodata"></span></div>
|
[/#if]
|
</div>
|