cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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>