cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 <style type="text/css">
  a { text-decoration: none; }
 .topMenu { margin-right:400px; }
.topMenu ul li { list-style: none; float:right; padding:5px;}
 img { border:0px; }
 </style>
 <div class="topMenu">
 <ul >
    [#assign firstYjgnID = 0 /]
    [#assign firstYjgnName = 0 /]
      [#list yjgnList as d]
          [#if firstYjgnID ==0] [#assign firstYjgnID = d.ID /] [/#if]
          [#if firstYjgnName ==0] [#assign firstYjgnName = d.GNMC /] [/#if]
    <li><a href="####" onclick="return loadLeft('${d.ID}','${d.GNMC}')" ><img width="48" height="46" src="${base+d.BIG_IMAGE}" /><div>${d.GNMC}</div> </a>  </li>
      [/#list]  
</ul>
</div>