설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

list.htm 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {eyou:if condition='($route_param.tid == 38 && $areaid === 0)'}
  2. <!--调用全部职称产品并分页-->
  3. {eyou:php}
  4. //计算limit属性
  5. $pagesize = 12;
  6. if(!empty($route_param['pa'])){
  7. $curpage = $route_param['pa'];
  8. $start_li = $pagesize*($curpage-1); //开始位置
  9. $end_li = $pagesize*$curpage;
  10. $limit_cat_value = $start_li.','.$pagesize;
  11. }else{
  12. $curpage = 1;
  13. $limit_cat_value = '0,'.$pagesize;
  14. }
  15. {/eyou:php}
  16. {eyou:assign name='limit_cat' value="$limit_cat_value" /}
  17. <!--直接用sql-->
  18. <?php
  19. //area_id=$areaid
  20. $where = "parent_id=38 and topid=38 and is_del=0 and status=1";
  21. ?>
  22. {eyou:sql sql="SELECT id FROM __PREFIX__arctype WHERE $where order by update_time desc limit $limit_cat" cachetime='3600' id='res'}
  23. {eyou:foreach name='$res' item='cat'}
  24. {eyou:type typeid='$cat' empty='暂时没有数据' id='item'}
  25. <li style="position:relative;">
  26. <a href="{:get_tid_url_2($item['typeurl'],0,0,0,'产品',$item['topid'],$item['area_id'])}"><img src="https://oss.zc10000.com/static/images/bg_1.png" width='160' height='140' alt="{$item.typename}" title="{$item.typename}"/></a>
  27. <a href="{:get_tid_url_2($item['typeurl'],0,0,0,'产品',$item['topid'],$item['area_id'])}" style="position: absolute;bottom:0;" class="aom">{$item.typename}</a>
  28. <span style="display:block;position: absolute;top:35%;width:100%;text-align:center;font-size: 20px;font-weight: bold;">
  29. <a href="{:get_tid_url_2($item['typeurl'],0,0,0,'产品',$item['topid'],$item['area_id'])}">{$item.typename}</a>
  30. </span>
  31. </li>
  32. {/eyou:type}
  33. {/eyou:foreach}
  34. {/eyou:sql}
  35. {eyou:else /}
  36. <!--具体职称分类-->
  37. {eyou:php}
  38. //计算limit属性
  39. $pagesize = 12;
  40. if(!empty($route_param['pa'])){
  41. $curpage = $route_param['pa'];
  42. $start_li = $pagesize*($curpage-1); //开始位置
  43. $end_li = $pagesize*$curpage;
  44. $limit_cat_value = $start_li.','.$pagesize;
  45. }else{
  46. $curpage = 1;
  47. $limit_cat_value = '0,'.$pagesize;
  48. }
  49. {/eyou:php}
  50. {eyou:assign name='limit_cat' value="$limit_cat_value" /}
  51. <!--一开始用sql 用limit浪费时间-->
  52. <!--直接用sql-->
  53. <?php
  54. //area_id=$areaid
  55. $where1 = "area_id=$areaid and parent_id=38 and topid=38 and is_del=0 and status=1";
  56. ?>
  57. {eyou:sql sql="SELECT id FROM __PREFIX__arctype where $where1 order by add_time asc limit $limit_cat" cachetime='3600' id='res'}
  58. {eyou:foreach name='$res' item='cat'}
  59. {eyou:type typeid='$cat' empty='暂时没有数据' id='item'}
  60. <li style="position:relative;">
  61. <a href="{:get_tid_url_2($item['typeurl'],0,0,0,'产品',$item['topid'],$item['area_id'])}"><img src="https://oss.zc10000.com/static/images/bg_1.png" width='160' height='140' alt="{$item.typename}" title="{$item.typename}"/></a>
  62. <a href="{:get_tid_url_2($item['typeurl'],0,0,0,'产品',$item['topid'],$item['area_id'])}" style="position: absolute;bottom:0;" class="aom">{$item.typename}</a>
  63. <span style="display:block;position: absolute;top:35%;width:100%;text-align:center;font-size: 20px;font-weight: bold;">
  64. <a href="{:get_tid_url_2($item['typeurl'],0,0,0,'产品',$item['topid'],$item['area_id'])}">{$item.typename}</a>
  65. </span>
  66. </li>
  67. {/eyou:type}
  68. {/eyou:foreach}
  69. {/eyou:sql}
  70. {/eyou:if}