<div class="fl_title">
|
<input class="pos tree bigtree" name="treeValue" type="radio" [#if currCus.checked==1]checked="checked"[/#if] id="${currCus.ID}" value="${currCus.ID}" labelName="${currCus.CUSTOMER_NAME}" style="float:left;margin-top:12px;margin-right:8px;"/><h3>${currCus.CUSTOMER_NAME}</h3>
|
<a class="fl_morebtn"></a>
|
</div>
|
<table class="second_level">
|
[#if customers?? && customers?size>0]
|
[#list customers as customer]
|
<tr class="d"><th width="20%"><input class="pos tree a c" style="margin-right:8px;" name="treeValue" type="radio" [#if customer.checked==1]checked="checked"[/#if] id="${customer.ID}" value="${customer.ID}" labelName="${customer.CUSTOMER_NAME}"><span>${customer.CUSTOMER_NAME}</span>:</th>
|
<td ><div class="thrid_level">
|
<div class="thrid_level_con clearfix">
|
[#if customer.subs?? && customer.subs?size>0]
|
[#list customer.subs as sub]
|
<div class="tl_item">
|
<input class="pos tree b c" name="treeValue" type="radio" [#if sub.checked==1]checked="checked"[/#if] id="${sub.ID}" value="${sub.ID}" labelName="${sub.CUSTOMER_NAME}"/>
|
<span>${sub.CUSTOMER_NAME}</span>
|
</div>
|
[/#list]
|
[/#if]
|
</div>
|
</div></td><th class="tl_morebtn_wrap"><a class="tl_morebtn">更多</a></th></tr>
|
[/#list]
|
[/#if]
|
</table>
|