Brak opisu
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.

content.htm 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. <div class="part">
  2. <div class="bar clearfix">
  3. <h1 class="tt"> <font>{$eyou.field.title}</font> </h1>
  4. <div class="r-intro fr"> <span class="data fr">
  5. <small class="info">
  6. <i class="fa fa-clock-o"></i>{$eyou.field.update_time|MyDate="Y-m-d",###}
  7. </small>
  8. <small class="info">
  9. <i class="fa fa-eye"></i>
  10. {$eyou.field.click}
  11. </small>
  12. <script src="https://www.zc10000.com/index.php?m=api&amp;c=Ajax&amp;a=arcclick&amp;type=view&amp;aids={$doc_aid}" type="text/javascript" language="javascript"></script>
  13. <?php
  14. /*
  15. * <!--
  16. <small class="info btn-c" id="share_btn" title="{$eyou.field.title}" aid="{$eyou.field.aid}" style="margin-left: 15px;cursor: pointer;">
  17. 点击分享
  18. </small>
  19. <div style="display: none;" id="share-box">
  20. <div class="social-share"></div>
  21. </div>
  22. -->
  23. */
  24. ?>
  25. </span>
  26. </div>
  27. </div>
  28. <div class="items">
  29. <div class="row post-single">
  30. <div class="col-xs-12 col-sm-12 col-md-8">
  31. <div class="pic fl">
  32. <div class="blur blur-layer" style="background: transparent url({$eyou.field.litpic}) no-repeat center center;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;animation: rotate 20s linear infinite;"> </div>
  33. <img class="img-cover" src="https://www.zc10000.com/public/static/common/images/ico/{$eyou.field.ext}.png" alt="{$temp_title}" title="{$temp_title}"> </div>
  34. <div class="list list-detail">
  35. <?php
  36. //获取标签
  37. //product_tag_id
  38. $product_tag_id = $eyou['field']['product_tag_id'];
  39. function convertBytesToMB($bytes) {
  40. return $bytes / 1024 / 1024;
  41. }
  42. if(empty($eyou['field']['size'])){
  43. if(empty($eyou['field']['down'])){
  44. $fileSize = 0;
  45. }else{
  46. $remoteFile = $eyou['field']['down'];
  47. $headers = get_headers($remoteFile, true);
  48. $fileSize = $headers['Content-Length'];
  49. }
  50. }else{
  51. $fileSize = $eyou['field']['size'];
  52. }
  53. $fileSize = convertBytesToMB($fileSize);
  54. $fileSize = number_format($fileSize, 2).'M';
  55. //var_dump($fileSize);
  56. ?>
  57. {eyou:if condition='((int)$product_tag_id > 0)'}
  58. {eyou:sql sql="select aid,title from ey_archives where aid=$product_tag_id" cachetime='3600' empty=''}
  59. <?php
  60. $tag_name = $field['title'];
  61. ?>
  62. {/eyou:sql}
  63. {/eyou:if}
  64. <p><font>文档名称:</font>{$eyou.field.title}</p>
  65. <p class="cate">
  66. {eyou:if condition='($is_mobile === false)'}
  67. <font>所属标签:</font> <a href="https://www.zc10000.com/tag{$tag_number}" target="_blank" >{$tag_name}</a>
  68. &nbsp;&nbsp;&nbsp;&nbsp;
  69. <font>关键词:</font> <a href="{$web_domain}{$web_url}" target="_blank" >{$temp_title}</a>
  70. {eyou:else /}
  71. <font>所属标签:</font> <a href="https://www.zc10000.com/tag{$tag_number}" target="_blank" >{$tag_name}</a>
  72. <br/>
  73. <font>关键词:</font> <a href="{$web_domain}{$web_url}" target="_blank" >{$temp_title}</a>
  74. {/eyou:if}
  75. </p>
  76. <p class="site">
  77. {eyou:if condition='($is_mobile === false)'}
  78. <font>文件大小:</font> {$fileSize} &nbsp;&nbsp;&nbsp;&nbsp;
  79. <font>上传时间:</font> {$eyou.field.update_time|MyDate="Y-m-d",###}&nbsp;&nbsp;&nbsp;&nbsp;
  80. <font>下载次数:</font> {$eyou.field.downcount}
  81. {eyou:else /}
  82. <font>上传时间:</font> &nbsp;&nbsp;{$eyou.field.update_time|MyDate="Y-m-d",###}&nbsp;&nbsp;&nbsp;&nbsp;<br/>
  83. <font>文件大小:</font> {$fileSize} &nbsp;&nbsp;&nbsp;&nbsp;
  84. <font>下载次数:</font> {$eyou.field.downcount}
  85. {/eyou:if}
  86. </p>
  87. <p class="seo">
  88. <?php
  89. /*
  90. * <!--SEO查询: <a class="" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a>
  91. <a class="pczz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> <a class="mzz" href="javascript:;" target="_self"><i class="fa fa-bar-chart"></i></a> -->
  92. */
  93. ?>
  94. {eyou:empty name='$eyou.field.zylm' /}
  95. <font>文档简介:</font> {$eyou.field.seo_description|msubstr=###,0,100,true}
  96. {eyou:else /}
  97. <font>文档简介:</font> {$eyou.field.zylm|msubstr=###,0,100,true}
  98. {/eyou:empty}
  99. </p>
  100. <?php
  101. if(!empty($eyou['field']['down'])){
  102. ?>
  103. <a class="btn transition" target="_self" href="javascript:;" id="down_btn" title="{$eyou.field.title}" aid="{$eyou.field.aid}">
  104. 下载文档
  105. <i class="fa fa-chevron-circle-right"></i>
  106. </a>
  107. <?php
  108. }else{
  109. ?>
  110. <a class="btn transition" target="_self" href="javascript:;" >
  111. 暂无文档
  112. <i class="fa fa-chevron-circle-right"></i>
  113. </a>
  114. <?php
  115. }
  116. ?>
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. <div class="part">
  123. <p class="tt"><span>文档介绍</span></p>
  124. <div class="items">
  125. <div class="art-main">
  126. <p>以下为{$temp_title}政策文件部分内容展示,如需了解详情,请直接下载本文件!</p>
  127. <br/>
  128. <p>
  129. {eyou:if condition='($is_mobile === false)'}
  130. {$eyou.field.content_5}
  131. {eyou:else /}
  132. {eyou:empty name='$eyou.field.content_4' /}
  133. {$eyou.field.content_5}
  134. {eyou:else /}
  135. {$eyou.field.content_4}
  136. {/eyou:empty}
  137. {/eyou:if}
  138. </p>
  139. <p> ...........<br/>
  140. 内容较多,页面展示有限,建议直接下载文档!) </p>
  141. <br/>
  142. <p> 温馨提示:<br/>
  143. 更多关于{$temp_title}的相关资讯或申报材料模板可以联系本站哦!
  144. </p>
  145. </div>
  146. </div>
  147. </div>
  148. <div class="part related" style="padding: 10px 15px;">
  149. <div class="col-xs-12 col-sm-6 col-md-6 b">
  150. <span class="b1">上一篇:</span>
  151. <?php
  152. //var_dump($number);
  153. $sql = "SELECT * FROM ey_seo_number WHERE id = (SELECT id FROM ey_seo_number WHERE number<$number and tid=1232 and is_del=0 and type=2 and area_id=$area_id ORDER BY number desc LIMIT 1)";
  154. ?>
  155. <span class="bb3">
  156. {eyou:sql sql="$sql" cachetime='3600' empty='无' id='kp'}
  157. {eyou:arcview aid='$kp.aid'}
  158. {eyou:if condition='((int)$field.is_del === 0)'}
  159. <?php
  160. //【2024版政策文件下载】
  161. if (strpos($field['title'], '评审') !== false) {
  162. $a = explode('评审', $field['title']);
  163. $temp_title = $a[0] . '评审';
  164. $ex = 1;
  165. $t_end = '【2024版政策文件下载】';
  166. } else {
  167. $temp_title = $field['title'];
  168. $ex = 0;
  169. $t_end = '';
  170. }
  171. ?>
  172. <a href="https://www.zc10000.com/zc/{$area_domain}/{$kp.number}" class="b2">{$temp_title}</a>
  173. {eyou:else /}
  174. 文档已删除
  175. {/eyou:if}
  176. {/eyou:arcview}
  177. {/eyou:sql}
  178. </span>
  179. </div>
  180. <div class="col-xs-12 col-sm-6 col-md-6 b bb" style="">
  181. <span style="" class="b1">下一篇:</span>
  182. <?php
  183. $sql = "SELECT * FROM ey_seo_number WHERE id = (SELECT id FROM ey_seo_number WHERE number>$number and tid=1232 and is_del=0 and type=2 and area_id=$area_id ORDER BY number asc LIMIT 1)";
  184. //echo $sql;
  185. ?>
  186. <span class="bb3">
  187. {eyou:sql sql="$sql" cachetime='3600' empty='无' id='kp'}
  188. {eyou:arcview aid='$kp.aid'}
  189. {eyou:if condition='((int)$field.is_del === 0)'}
  190. <?php
  191. //【2024版政策文件下载】
  192. if (strpos($field['title'], '评审') !== false) {
  193. $a = explode('评审', $field['title']);
  194. $temp_title = $a[0] . '评审';
  195. $ex = 1;
  196. $t_end = '【2024版政策文件下载】';
  197. } else {
  198. $temp_title = $field['title'];
  199. $ex = 0;
  200. $t_end = '';
  201. }
  202. ?>
  203. <a href="https://www.zc10000.com/zc/{$area_domain}/{$kp.number}" style="" class="b2">{$temp_title}</a>
  204. {eyou:else /}
  205. 文档已删除 {$field.title|msubstr=###,0,10,true}
  206. {/eyou:if}
  207. {/eyou:arcview}
  208. {/eyou:sql}
  209. </span>
  210. </div>
  211. <div class="clear"></div>
  212. </div>
  213. <div class="part related">
  214. <p class="tt"><span>相关政策文件</span></p>
  215. <div class="items">
  216. <div class="row">
  217. <ul>
  218. <?php
  219. if($areaname === 0){
  220. $where = " and area_tag_id=".$area_id." and aid!=".$doc_aid;
  221. }else{
  222. //没有区域 要排除其他区域
  223. $where = " and area_tag_id=0 and aid!=".$doc_aid;
  224. }
  225. //product_tag_id
  226. //$tid
  227. if((int)$product_tag_id === 0){
  228. $where = " typeid=".$tid." and is_del=0 and status=1 and province_id=0 and product_tag_id=0 ".$where." OR typeid=".$tid." and is_del=0 and status=1 and province_id=0 and product_tag_id>0".$where; //and is_recom=1
  229. }else{
  230. $where = " typeid=".$tid." and is_del=0 and status=1 and province_id=0 ".$where." OR typeid=".$tid." and is_del=0 and status=1 and province_id=0 and product_tag_id=".$product_tag_id.$where; //and is_recom=1 //and product_tag_id=0
  231. }
  232. $sql = "select aid from ey_archives where $where order by product_tag_id desc,update_time desc limit 0,6";
  233. //echo $sql;
  234. ?>
  235. <?php
  236. $num = 0;
  237. ?>
  238. {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
  239. {eyou:arcview aid='$listSql.aid'}
  240. <?php
  241. $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id']);
  242. $num++;
  243. ?>
  244. <?php
  245. //【2024版政策文件下载】
  246. if (strpos($field['title'], '评审') !== false) {
  247. $a = explode('评审',$field['title']);
  248. $temp_title = $a[0].'评审';
  249. $ex = 1;
  250. $t_end = '【2024版政策文件下载】';
  251. }else{
  252. $temp_title = $field['title'];
  253. $ex = 0;
  254. $t_end = '';
  255. }
  256. ?>
  257. {eyou:include file='/template/pc/components/goods/zc.htm' /}
  258. {/eyou:arcview}
  259. {/eyou:sql}
  260. <?php
  261. $num = 6-$num;
  262. //var_dump($num);
  263. //再补充的数量
  264. if($areaname === 0){
  265. $where = " and area_tag_id!=".$area_id." and aid!=".$doc_aid;
  266. }else{
  267. //补充场景 前面区域为0 这里要大于0
  268. $where = " and area_tag_id>0 and aid!=".$doc_aid; //and area_tag_id=0
  269. }
  270. if((int)$product_tag_id === 0){
  271. $where = " typeid=".$tid." and is_del=0 and status=1 and province_id=0 and product_tag_id=0 ".$where." OR typeid=".$tid." and is_del=0 and status=1 and province_id=0 and product_tag_id>0".$where; //and is_recom=1
  272. }else{
  273. $where = " typeid=".$tid." and is_del=0 and status=1 and province_id=0 ".$where." OR typeid=".$tid." and is_del=0 and status=1 and province_id=0 and product_tag_id=".$product_tag_id.$where; //and is_recom=1 //and product_tag_id=0
  274. }
  275. //优先标签前置
  276. $sql = "select aid from ey_archives where $where order by product_tag_id desc,click desc,update_time desc limit 0,".$num;
  277. //var_dump($sql);
  278. ?>
  279. {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
  280. {eyou:arcview aid='$listSql.aid'}
  281. <?php
  282. $a_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['area_tag_id'],$field['city_id']);
  283. ?>
  284. {eyou:include file='/template/pc/components/goods/zc.htm' /}
  285. {/eyou:arcview}
  286. {/eyou:sql}
  287. </ul>
  288. </div>
  289. </div>
  290. </div>
  291. <div class="part related">
  292. <p class="tt"><span>相关申报材料:</span></p>
  293. <div class="items">
  294. <div class="row">
  295. <?php
  296. //product_tag_id
  297. //$tid
  298. if((int)$product_tag_id === 0){
  299. $where = " typeid=1233 and is_del=0 and status=1 and province_id=0 and product_tag_id=0 OR typeid=1233 and is_del=0 and status=1 and province_id=0 and product_tag_id>0"; //and is_recom=1
  300. }else{
  301. $where = " typeid=1233 and is_del=0 and status=1 and province_id=0 OR typeid=1233 and is_del=0 and status=1 and province_id=0 and product_tag_id=$product_tag_id"; //and is_recom=1 //and product_tag_id=0
  302. }
  303. $sql = "select aid from ey_archives where $where order by product_tag_id desc,click desc,update_time desc limit 0,6";
  304. //echo $sql;
  305. ?>
  306. {eyou:sql sql='$sql' cachetime='3600' id="listSql"}
  307. {eyou:arcview aid='$listSql.aid'}
  308. <?php
  309. $ar_url = get_tid_url_2($field['arcurl'],$field['typeid'],$field['stypeid'],'0','',0,$field['province_id'],$field['city_id']);
  310. ?>
  311. <div class="col-xs-6 col-sm-4 col-md-2 font-563-active-{$i}">
  312. <div class="item art-item transition cl-img-box">
  313. <a class="art-a" href="{$ar_url}" title="" >
  314. <img class="img-cover cl-img" src="{$field.litpic}" alt="{$field.title}" />
  315. </a>
  316. <h3 class="art-title cl-art-title">
  317. {eyou:if condition='((int)$field.is_recom === 1)'}
  318. <i class="more2_info_self">推荐</i>
  319. {/eyou:if}
  320. <a class="" href="{$ar_url}" title="{$field.title}">
  321. {$field.title|msubstr=###,0,30,true}<span style="color:red;display: none;">👍<font style="font-weight: bold;font-size: 12px;">限时免费赠送</font></span>
  322. </a>
  323. </h3>
  324. <div class="mod_price" style="display: none;">
  325. <i>¥</i>
  326. <span class="more2_info_price_txt">{$field.users_price}.<span class="more2_info_price_txt-decimal">00</span>
  327. </span>
  328. </div>
  329. </div>
  330. </div>
  331. {/eyou:arcview}
  332. {/eyou:sql}
  333. </div>
  334. </div>
  335. </div>