keywordIndustryTopInfo.zml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <#include "/ztmpl/zhiqim_manager/"+themeMain+"/define.htm"/>
  2. <table class="z-table z-bordered z-bg-white z-pd6"">
  3. <tr class="z-h30" bgcolor="${zmr_thead_bgolor}">
  4. <td width="6%" align="center">子行业:</td>
  5. <td width="*">
  6. <#for item : inSubList>
  7. <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>
  8. </#for>
  9. </td>
  10. </tr>
  11. </table>
  12. <div data-role="z-tabnav" class="z-tabnav">
  13. <nav>
  14. <ul>
  15. <li class="z-active">搜索热门排行</li>
  16. </ul>
  17. </nav>
  18. <section>
  19. <div class="z-active z-pd10">
  20. <table class="z-table z-bordered z-bg-white z-pd6">
  21. <tr align="center" class="z-h40" bgcolor="${zmr_thead_bgcolor}">
  22. <td width="5%">排名</td>
  23. <td width="15%">关键词</td>
  24. <td width="*">搜索次数</td>
  25. </tr>
  26. <#for item : coreList>
  27. <tr align="center" class="z-h40" ${zhiqim_manager_tr_onmouse()}>
  28. <td>${item_index + 1}</td>
  29. <td>${item.getKeywordName()}</td>
  30. <td>${item.getKeywordNum()}</td>
  31. </tr>
  32. </#for>
  33. </table>
  34. </div>
  35. </section>
  36. </div>