| 123456789101112131415161718192021222324252627282930313233343536 |
- <#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
- <table class="z-table z-bordered z-bg-white z-pd6"">
- <tr class="z-h30" bgcolor="${zmr_thead_bgolor}">
- <td width="6%" align="center">子行业:</td>
- <td width="*">
- <#for item : inSubList>
- <button name="subName" id="sub_${item.getIndustrySubId()}" type="button" class="z-button z-large z-bordered z-mg-r6 z-mg-t6 z-blue-bd z-hover <#if item.getIndustrySubId() == industrySubId>z-active</#if>" onclick="Z.Location.href('keywordIndustryTop.htm?industryId=${item.getIndustryId()}&industrySubId=${item.getIndustrySubId()}');">${item.getIndustrySubName()}</button>
- </#for>
- </td>
- </tr>
- </table>
- <div data-role="z-tabnav" class="z-tabnav">
- <nav>
- <ul>
- <li class="z-active">搜索热门排行</li>
- </ul>
- </nav>
- <section>
- <div class="z-active z-pd10">
- <table class="z-table z-bordered z-bg-white z-pd6">
- <tr align="center" class="z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td width="5%">排名</td>
- <td width="15%">关键词</td>
- <td width="*">搜索次数</td>
- </tr>
- <#for item : coreList>
- <tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()}>
- <td>${item_index + 1}</td>
- <td>${item.getKeywordName()}</td>
- <td>${item.getKeywordNum()}</td>
- </tr>
- </#for>
- </table>
- </div>
- </section>
- </div>
|