Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!--拼接查询条件-->
  2. <?php
  3. //关联 其他栏目 用的 查询
  4. $catid = 0;
  5. if(empty($provid)){
  6. $provid = 0;
  7. }
  8. if(empty($cityid)){
  9. $cityid = 0;
  10. }
  11. //只调用省级 城市为空
  12. if((int)$provid === 0 && (int)$catid === 0){
  13. //所有省份的数据
  14. //and province_id='0' and city_id='0'
  15. $where = "typeid=".$tid." and is_del=0";
  16. }else if((int)$provid > 0 && (int)$catid === 0 && (int)$cityid === 0){
  17. //只选择省 不选择职称
  18. //and city_id='0'
  19. $where = "typeid=".$tid." and province_id='$provid' and is_del=0";
  20. }else{
  21. //存在城市
  22. // and stypeid='$catid'
  23. $where = "typeid=".$tid." and province_id='$provid' and city_id='$cityid' and is_del=0";
  24. }
  25. if($tagid > 0){
  26. //加入筛选
  27. $where = $where.' and product_tag_id='.$tagid;
  28. }
  29. //var_dump($where);
  30. ?>
  31. <?php
  32. //var_dump($route_param['page']);
  33. //计算limit属性
  34. $pagesize = 12;
  35. if(!empty($route_param['page'])){
  36. $curpage = $route_param['page'];
  37. $start_li = $pagesize*($curpage-1); //开始位置
  38. $end_li = $pagesize*$curpage;
  39. $limit_cat_value = $start_li.','.$pagesize;
  40. }else{
  41. $curpage = 1;
  42. $limit_cat_value = '0,'.$pagesize;
  43. }
  44. ?>
  45. {eyou:assign name='limit_cat' value="$limit_cat_value" /}
  46. <?php
  47. //$sql = "select GROUP_CONCAT(aid SEPARATOR ',') AS ids from ey_archives where $where order by update_time desc limit $limit_cat";
  48. $sql = "select aid from ey_archives where $where order by update_time desc limit $limit_cat";
  49. //echo $sql;die;
  50. $ids = '';
  51. ?>
  52. {eyou:sql sql="$sql" cachetime='3600' empty='没有数据' id="res"}
  53. <?php
  54. //var_dump($provid);
  55. //var_dump($res);
  56. $ids = $res['aid'].','.$ids;
  57. ?>
  58. {/eyou:sql}
  59. <?php
  60. $ids = preg_replace("/.$/", "", $ids);
  61. //var_dump($ids);
  62. ?>
  63. <!--开始查询-->
  64. {eyou:empty name='$ids' /}
  65. ----------------------(暂无相关文档)-----------------------
  66. {eyou:else /}
  67. {eyou:artlist idlist="$ids" titlelen='30' limit='0,12' infolen='160' orderby='update_time desc' addfields='handle_time,province_id'}
  68. <?php
  69. //var_dump($field['aid']);
  70. ?>
  71. <li class="font-563-active-{$i}">
  72. <img src="https://www.wetools.com/imgplaceholder/14x12"/>
  73. <a
  74. href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id'])}">{$field.title}</a>
  75. <span>{$field.add_time|MyDate='Y-m-d H:i',###}</span>
  76. {eyou:empty name='$field.seo_description' /}
  77. <p style="height:1px;"></p>
  78. {eyou:else /}
  79. <p>{$field.seo_description|msubstr=###,0,35,true}</p>
  80. {/eyou:empty}
  81. </li>
  82. {/eyou:artlist}
  83. {/eyou:empty}