No Description
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 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. //栏目id
  3. $tyid = ['0','126','825','826','','126'];
  4. //只调用省级 城市为空
  5. if((int)$provid === 0 && (int)$catid === 0){
  6. //所有省份的数据
  7. //$where = "typeid=".$tyid[$type]." and province_id > 0 and city_id='0' and is_del=0";
  8. $where = "typeid=".$tyid[$type]." and is_del=0";
  9. }else if((int)$provid > 0 && (int)$catid === 0){
  10. //只选择省 不选择职称
  11. $where = "typeid=".$tyid[$type]." and province_id='$provid' and city_id='0' and is_del=0";
  12. }else{
  13. //职称 > 0 那么理论上省=0或>0 但这里省必定>0
  14. $where = "typeid=".$tyid[$type]." and province_id='$provid' and stypeid='$catid' and city_id='0' and is_del=0";
  15. }
  16. if($tagid > 0){
  17. //加入筛选
  18. $where = $where.' and product_tag_id='.$tagid;
  19. }
  20. if(!empty($wareaname) && $wareaname == 'shandong'){
  21. //查询id
  22. $where = $where.' and area_tag_id=10000';
  23. }
  24. ?>
  25. {eyou:php}
  26. //计算limit属性
  27. $pagesize = 20;
  28. if(!empty($route_param['pa'])){
  29. $curpage = $route_param['pa'];
  30. $start_li = $pagesize*($curpage-1); //开始位置
  31. $end_li = $pagesize*$curpage;
  32. $limit_cat_value = $start_li.','.$pagesize;
  33. }else{
  34. $curpage = 1;
  35. $limit_cat_value = '0,'.$pagesize;
  36. }
  37. {/eyou:php}
  38. {eyou:assign name='limit_cat' value="$limit_cat_value" /}
  39. <?php
  40. //$sql = "select GROUP_CONCAT(aid SEPARATOR ',') AS ids from ey_archives where $where order by update_time desc limit $limit_cat";
  41. $sql = "select aid from ey_archives where $where order by update_time desc limit $limit_cat";
  42. //echo $sql;die;
  43. $ids = '';
  44. ?>
  45. {eyou:sql sql="$sql" cachetime='3600' empty='没有数据' id="res"}
  46. <?php
  47. //var_dump($provid);
  48. //var_dump($res);
  49. $ids = $res['aid'].','.$ids;
  50. ?>
  51. {/eyou:sql}
  52. <?php
  53. $ids = preg_replace("/.$/", "", $ids);
  54. ?>
  55. <!--开始查询-->
  56. {eyou:empty name='$ids' /}
  57. ----------------------(暂无相关文档)-----------------------
  58. {eyou:else /}
  59. {eyou:artlist idlist="$ids" titlelen='30' infolen='160' limit="0,20" orderby='update_time desc' addfields='down'}
  60. <li>
  61. <?php
  62. $extension = substr($field['down'], strrpos($field['down'], '.') + 1);
  63. ?>
  64. <div style=""></div>
  65. <span>.{$extension}</span>
  66. <img src="https://oss.zc10000.com/static/img/{$extension}.svg" />
  67. <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],0,'',0,$field['province_id'])}" class="k">{$field.title}</a>
  68. <!--<p>
  69. <img src="https://oss.zc10000.com/static/images/031.SVG">
  70. <font class="sp-1">评审时间</font>
  71. <font class="sp-2">{$field.handle_time}</font>
  72. </p>-->
  73. <p>
  74. <font>阅读量: {$field.click}</font>
  75. <font>收藏量: {$field.collection}</font>
  76. <font>点赞量: {$field.likecount}</font>
  77. <font>下载量: {$field.downcount}</font>
  78. </p>
  79. <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],0,'',0,$field['province_id'])}">
  80. <button>
  81. 前往下载
  82. </button></a>
  83. </li>
  84. {/eyou:artlist}
  85. {/eyou:empty}