1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- //省级 不包含所有城市
- //只存在省 或者 只存在职称
- //或者省和职称同时存在
- //var_dump((int)$catid);
- if((int)$provid === 0 && (int)$catid === 0){
- $where = "typeid='825' and province_id>0 and city_id='0' and is_del=0";
- }else if((int)$provid > 0 && (int)$catid === 0){
- //有职称的不调用出来 stypeid is null and stypeid=''
- $where = "typeid='825' and province_id='$provid' and city_id='0' and is_del=0";
- }else if((int)$provid === 0 && (int)$catid > 0){
- $where = "typeid='825' and province_id>0 and stypeid='$catid' and city_id='0' and is_del=0";
- }else{
- //都大于0
- //stypeid 字段不使用 like
- $where = "typeid='825' and province_id='$provid' and stypeid='$catid' and city_id='0' and is_del=0";
- }
- ?>
- {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"}
- <?php
- //var_dump($provid);
- //ar_dump($res2);
- ?>
- {eyou:empty name='$res2.ids' /}
- ----------------------(暂无相关文档)-----------------------
- {eyou:else /}
- {eyou:artlist idlist="$res2.ids" titlelen='30' infolen='160' orderby='update_time desc' addfields='handle_time'}
- <li>
- <?php
- $extension = substr($field['down'], strrpos($field['down'], '.') + 1);
- ?>
- <div style=""></div>
- <span>.{$extension}</span>
- <img src="https://oss.zc10000.com/static/img/{$extension}.svg" />
- <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}" class="k">{$field.title}</a>
- <p>
- <img src="https://oss.zc10000.com/static/images/031.SVG">
- <font class="sp-1">评审时间: </font>
- <font class="sp-2">{$field.handle_time}</font>
- </p>
- <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}">
- <button>
- 前往下载
- </button></a>
- </li>
- {/eyou:artlist}
- {/eyou:empty}
- {/eyou:sql}
- {eyou:elseif condition='($con === 3)'}
- <?php
- //市级 加 职称
- if((int)$cityid === 0 && (int)$catid === 0){
- $where = "typeid='825' and city_id>0 and is_del=0";
- }else if((int)$cityid > 0 && (int)$catid === 0){
- //and stypeid=''
- $where = "typeid='825' and city_id='$cityid' and is_del=0";
- }else if((int)$cityid === 0 && (int)$catid > 0){
- //city_id>0 表示这是市级文档 只是这里调全部市级
- $where = "typeid='825' and city_id>0 and stypeid='$catid' and is_del=0";
- }else{
- //都大于0
- //stypeid 字段不使用 like
- $where = "typeid='825' and city_id='$cityid' and stypeid='$catid' and is_del=0";
- }
- ?>
- {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"}
- <?php
- //var_dump($cityid);
- //var_dump($res3);
- ?>
- {eyou:empty name='$res3.ids' /}
- ----------------------(暂无相关文档)-----------------------
- {eyou:else /}
- {eyou:artlist idlist="$res3.ids" titlelen='30' infolen='160' orderby='update_time desc' addfields='handle_time'}
- <li>
- <div style=""></div>
- <span>.zip</span>
- <img src="https://oss.zc10000.com/static/images/039.svg" />
- <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}" class="k">{$field.title}</a>
- <p>
- <img src="https://oss.zc10000.com/static/images/031.SVG">
- <font class="sp-1">评审时间: </font>
- <font class="sp-2">{$field.handle_time}</font>
- </p>
- <a href="{:get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'])}">
- <button>
- 前往下载
- </button></a>
- </li>
- {/eyou:artlist}
- {/eyou:empty}
- {/eyou:sql}
|