Index.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\policy\Type;
  4. use app\common\controller\Api;
  5. use app\common\model\Activity;
  6. use app\common\model\City;
  7. use app\common\model\CommunityModel;
  8. use app\common\model\Message;
  9. use app\common\model\Park;
  10. use app\common\model\Protable;
  11. use think\Db;
  12. /**
  13. * 首页接口
  14. */
  15. class Index extends Api
  16. {
  17. protected $noNeedLogin = ['index','banner','notice','gg','parkMessage','activity','protable','protableInfo','NoticeInfo','GgInfo','message'];
  18. protected $noNeedRight = ['*'];
  19. /**
  20. * 首页未登录园区活动和资讯
  21. *
  22. */
  23. public function index()
  24. {
  25. $data['message'] = Message::where('index_show',1)->where('switch',1)->order('sort desc')->find();
  26. $data['activity'] = Activity::where('index_show',1)->where('switch',1)->order('sort desc')->find();
  27. $this->success('请求成功',$data);
  28. }
  29. /**
  30. * 消息判断
  31. */
  32. public function message()
  33. {
  34. $user = $this->auth->getUser();
  35. $status = 0;
  36. if (!$user) return $this->success('',['status'=>0]);
  37. $userCommunity = CommunityModel::where('uid',$user['id'])->column('id');
  38. $str = implode(',',$userCommunity);
  39. $comment = Db::name('community_comment')
  40. ->where('c_id',"in",$str)
  41. ->order('create_time desc')->select();
  42. if (!empty($comment)) {
  43. foreach ($comment as $k=>$v) {
  44. if (strtotime($v['create_time']) > $user['see_message_time']) $status = 1;
  45. }
  46. }
  47. $data = Db::name('admin_message')->order('create_time desc')->select();
  48. foreach ($data as $m=>$n) {
  49. if (strtotime($n['create_time'])>$user['see_message_time']) $status=1;
  50. }
  51. return $this->success('',['status'=>$status]);
  52. }
  53. /**
  54. * 轮播图
  55. *
  56. */
  57. public function banner()
  58. {
  59. $data['banner'] = Db::name('banner')->select();
  60. foreach ( $data['banner'] as &$v) {
  61. $v['image'] = config('site.httpurl').$v['image'];
  62. }
  63. $user = $this->auth->getUser();
  64. if ($user) {
  65. $park = Park::where('id',$user['p_id'])->find();
  66. if ($park) {
  67. $data['park_name'] = $park['name'];
  68. } else {
  69. $data['park_name'] = '';
  70. }
  71. } else {
  72. $data['park_name'] = '';
  73. }
  74. return $this->success('',$data);
  75. }
  76. /**
  77. * 公告
  78. * @param string $page 页数
  79. * @param string $limit 条数
  80. */
  81. public function notice()
  82. {
  83. $page = $this->request->get('page');
  84. $limit = $this->request->get('limit');
  85. if (!$page) {
  86. $fen = '0,10';
  87. } else {
  88. $page = $page - 1;
  89. if ($page<0) $page = 0;
  90. $fen = $page.','.$limit;
  91. }
  92. $data = Db::name('notice')
  93. ->where('switch',1)
  94. ->limit($fen)
  95. ->order('sort desc')
  96. ->select();
  97. foreach ( $data as &$v) {
  98. $v['create_time'] = date('Y-m-d',$v['create_time']);
  99. $v['content'] = str_replace('src="','src="'.config('site.httpurl'),$v['content']);
  100. }
  101. return $this->success('',$data);
  102. }
  103. /**
  104. * 公告详情
  105. *
  106. * @param string $id 广告id
  107. */
  108. public function NoticeInfo()
  109. {
  110. $id = $this->request->get('id');
  111. $data = Db::name('notice')
  112. ->where('id',$id)
  113. ->find();
  114. $data['create_time'] = date('Y-m-d',$data['create_time']);
  115. $data['content'] = str_replace('src="','src="'.config('site.httpurl'),$data['content']);
  116. return $this->success('',$data);
  117. }
  118. /**
  119. * 广告位
  120. * @param string $page 页数
  121. * @param string $limit 条数
  122. */
  123. public function gg()
  124. {
  125. $page = $this->request->get('page');
  126. $limit = $this->request->get('limit');
  127. if (!$page) {
  128. $fen = '0,10';
  129. } else {
  130. $page = $page - 1;
  131. if ($page<0) $page = 0;
  132. $fen = $page.','.$limit;
  133. }
  134. $data = Db::name('gg')
  135. ->where('switch',1)
  136. ->order('sort desc')
  137. ->limit($fen)
  138. ->select();
  139. foreach ($data as &$v) {
  140. $v['image'] = config('site.httpurl').$v['image'];
  141. $v['images'] = config('site.httpurl').$v['images'];
  142. $v['content'] = str_replace('src="','src="'.config('site.httpurl'),$v['content']);
  143. }
  144. return $this->success('',$data);
  145. }
  146. /**
  147. * 广告详情
  148. *
  149. * @param string $id 广告id
  150. */
  151. public function GgInfo()
  152. {
  153. $id = $this->request->get('id');
  154. $data = Db::name('gg')
  155. ->where('id',$id)
  156. ->find();
  157. $data['image'] = config('site.httpurl').$data['image'];
  158. $data['images'] = explode(',',$data['images']);
  159. foreach ($data['images'] as &$v) {
  160. $v = config('site.httpurl').$v;
  161. }
  162. $data['content'] = str_replace('src="','src="'.config('site.httpurl'),$data['content']);
  163. return $this->success('',$data);
  164. }
  165. /**
  166. * 广告位申请
  167. * @ApiMethod (POST)
  168. * @param string $name id
  169. * @param string $mobile id
  170. * @param string $notice id
  171. *
  172. */
  173. public function shenqing()
  174. {
  175. $data = $this->request->post();
  176. if (!isset($data['name']) || empty($data['name'])) return $this->error('请输入姓名');
  177. if (!isset($data['mobile']) || empty($data['mobile'])) return $this->error('请输入手机号');
  178. if (!isset($data['notice']) || empty($data['notice'])) return $this->error('请输入具体需求');
  179. $user = $this->auth->getUser();
  180. if (!$user) return $this->error(__('Please login first'), null, 401);
  181. $data['uid'] = $user['id'];
  182. $data['create_time'] = date('Y-m-d H:i:s',time());
  183. // $isert = Db::name('gg_shenqing')->where('uid',$user['id'])->find();
  184. //
  185. // if ($isert) return $this->error('您已经申请过了');
  186. $add = Db::name('gg_shenqing')->insert($data);
  187. return $this->error('提交失败');
  188. }
  189. /**
  190. * 便携号码
  191. * @param string $page 页数
  192. * @param string $limit 条数
  193. */
  194. public function protable()
  195. {
  196. $page = $this->request->get('page');
  197. $limit = $this->request->get('limit');
  198. if (!$page) {
  199. $fen = '0,10';
  200. } else {
  201. $page = $page - 1;
  202. if ($page<0) $page = 0;
  203. $fen = $page.','.$limit;
  204. }
  205. $tableModel = new Protable();
  206. $data = $tableModel->where('switch',1)
  207. ->limit($fen)
  208. ->order('sort desc')
  209. ->field('id,name,name_eng,image')
  210. ->select();
  211. return $this->success('暂无数据',$data);
  212. }
  213. /**
  214. * 便携号码详情
  215. *
  216. * @param string $id 号码id
  217. */
  218. public function protableInfo()
  219. {
  220. $id = $this->request->get('id');
  221. if (!isset($id) || empty($id)) return $this->error('参数错误');
  222. $protableModel = new Protable();
  223. $data = $protableModel->where('id',$id)
  224. ->field('id,title1,mobile1,title2,mobile2')
  225. ->find();
  226. $data['info'] = Db::name('protable_info')
  227. ->where('p_id',$data['id'])
  228. ->where('switch',1)
  229. ->order('sort desc')
  230. ->select();
  231. return $this->success('暂无数据',$data);
  232. }
  233. }