説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

area.htm 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /*
  3. * 应该写一个公共组件
  4. * 这个组件代码 虽然与现有的代码功能 有点重复
  5. * 但不影响 现有代码变量即可 不管那么多
  6. *
  7. */
  8. //判断区域
  9. $sql2 = '';
  10. $domain = request()->domain();
  11. //https://
  12. $domain = str_replace('https://', '', $domain);
  13. $domain = explode('.',$domain);
  14. //var_dump($domain);
  15. $site = $domain[0];
  16. //var_dump($site);
  17. if(!empty($site) && $site != 'zc' && $site != 'www'){
  18. //判定为二级域名
  19. $sql2 = "SELECT id,name FROM ey_citysite WHERE domain = '".$site."'";
  20. }else{
  21. $site = 'www';
  22. }
  23. //处理城市参数
  24. $sql3 = '';
  25. $route_param = request()->route();
  26. if(!empty($route_param['site'])){
  27. $city_domain = $route_param['site'];
  28. $sql3 = "SELECT id,name FROM ey_citysite WHERE domain = '".$city_domain."'";
  29. }else{
  30. $city_domain = 'none';
  31. }
  32. $is_area_data = 0;
  33. $where = '';
  34. ?>
  35. {eyou:if condition='($sql2 !== "")'}
  36. {eyou:sql sql='$sql2' cachetime='3600' id='area'}
  37. {eyou:php}
  38. $area_name = ''.$area['name'].'';
  39. $area_id = ''.$area['id'].'';
  40. $area_where = "province_id=".$area_id." ";
  41. {/eyou:php}
  42. {/eyou:sql}
  43. {/eyou:if}
  44. {eyou:if condition='($sql3 !== "")'}
  45. {eyou:sql sql='$sql3' cachetime='3600' id='area'}
  46. {eyou:php}
  47. $city_name = ''.$area['name'].'';
  48. $city_id = ''.$area['id'].'';
  49. $area_where = "province_id=".$area_id." and city_id=".$city_id." ";
  50. {/eyou:php}
  51. {/eyou:sql}
  52. {/eyou:if}
  53. {eyou:if condition='($sql2 !== "")'}
  54. {eyou:php}
  55. //针对常见问题
  56. $sql4 = "SELECT count(*) as num FROM ey_archives WHERE ".$area_where." and typeid=111 and is_del=0 and status=1 and arcrank=0 ";
  57. {/eyou:php}
  58. {eyou:sql sql='$sql4' cachetime='3600' id='area_data'}
  59. {eyou:php}
  60. if((int)$area_data['num'] > 0){
  61. //存在区域数据
  62. $is_area_data = 1;
  63. }
  64. {/eyou:php}
  65. {/eyou:sql}
  66. {/eyou:if}