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.

list2.htm 3.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. //省级 不包含所有城市
  3. //只存在省 或者 只存在职称
  4. //或者省和职称同时存在
  5. //var_dump((int)$catid);
  6. if((int)$provid === 0 && (int)$catid === 0){
  7. $where = "typeid='825' and province_id>0 and city_id='0' and is_del=0";
  8. }else if((int)$provid > 0 && (int)$catid === 0){
  9. //有职称的不调用出来 stypeid is null and stypeid=''
  10. $where = "typeid='825' and province_id='$provid' and city_id='0' and is_del=0";
  11. }else if((int)$provid === 0 && (int)$catid > 0){
  12. $where = "typeid='825' and province_id>0 and stypeid='$catid' and city_id='0' and is_del=0";
  13. }else{
  14. //都大于0
  15. //stypeid 字段不使用 like
  16. $where = "typeid='825' and province_id='$provid' and stypeid='$catid' and city_id='0' and is_del=0";
  17. }
  18. ?>
  19. {eyou:sql sql="select GROUP_CONCAT(aid SEPARATOR ',') AS ids from ey_archives where $where order by update_time desc" cachetime='3600' empty='没有数据' id="res2"}
  20. <?php
  21. //var_dump($provid);
  22. //ar_dump($res2);
  23. ?>
  24. {eyou:empty name='$res2.ids' /}
  25. ----------------------(暂无相关文档)-----------------------
  26. {eyou:else /}
  27. {eyou:artlist idlist="$res2.ids" titlelen='30' infolen='160' orderby='update_time desc' addfields='handle_time'}
  28. <li>
  29. <?php
  30. $extension = substr($field['down'], strrpos($field['down'], '.') + 1);
  31. ?>
  32. <div style=""></div>
  33. <span>.{$extension}</span>
  34. <img src="https://oss.zc10000.com/static/img/{$extension}.svg" />
  35. <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}" class="k">{$field.title}</a>
  36. <p>
  37. <img src="https://oss.zc10000.com/static/images/031.SVG">
  38. <font class="sp-1">评审时间: </font>
  39. <font class="sp-2">{$field.handle_time}</font>
  40. </p>
  41. <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}">
  42. <button>
  43. 前往下载
  44. </button></a>
  45. </li>
  46. {/eyou:artlist}
  47. {/eyou:empty}
  48. {/eyou:sql}
  49. {eyou:elseif condition='($con === 3)'}
  50. <?php
  51. //市级 加 职称
  52. if((int)$cityid === 0 && (int)$catid === 0){
  53. $where = "typeid='825' and city_id>0 and is_del=0";
  54. }else if((int)$cityid > 0 && (int)$catid === 0){
  55. //and stypeid=''
  56. $where = "typeid='825' and city_id='$cityid' and is_del=0";
  57. }else if((int)$cityid === 0 && (int)$catid > 0){
  58. //city_id>0 表示这是市级文档 只是这里调全部市级
  59. $where = "typeid='825' and city_id>0 and stypeid='$catid' and is_del=0";
  60. }else{
  61. //都大于0
  62. //stypeid 字段不使用 like
  63. $where = "typeid='825' and city_id='$cityid' and stypeid='$catid' and is_del=0";
  64. }
  65. ?>
  66. {eyou:sql sql="select GROUP_CONCAT(aid SEPARATOR ',') AS ids from ey_archives where $where order by update_time desc" cachetime='3600' empty='没有数据' id="res3"}
  67. <?php
  68. //var_dump($cityid);
  69. //var_dump($res3);
  70. ?>
  71. {eyou:empty name='$res3.ids' /}
  72. ----------------------(暂无相关文档)-----------------------
  73. {eyou:else /}
  74. {eyou:artlist idlist="$res3.ids" titlelen='30' infolen='160' orderby='update_time desc' addfields='handle_time'}
  75. <li>
  76. <div style=""></div>
  77. <span>.zip</span>
  78. <img src="https://oss.zc10000.com/static/images/039.svg" />
  79. <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}" class="k">{$field.title}</a>
  80. <p>
  81. <img src="https://oss.zc10000.com/static/images/031.SVG">
  82. <font class="sp-1">评审时间: </font>
  83. <font class="sp-2">{$field.handle_time}</font>
  84. </p>
  85. <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}">
  86. <button>
  87. 前往下载
  88. </button></a>
  89. </li>
  90. {/eyou:artlist}
  91. {/eyou:empty}
  92. {/eyou:sql}