123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <?php
- namespace app\api\controller;
- use app\admin\model\policy\Type;
- use app\common\controller\Api;
- use app\common\model\Activity;
- use app\common\model\City;
- use app\common\model\CommunityModel;
- use app\common\model\Message;
- use app\common\model\Park;
- use app\common\model\Protable;
- use think\Db;
- /**
- * 首页接口
- */
- class Index extends Api
- {
- protected $noNeedLogin = ['index','banner','notice','gg','parkMessage','activity','protable','protableInfo','NoticeInfo','GgInfo','message'];
- protected $noNeedRight = ['*'];
- /**
- * 首页未登录园区活动和资讯
- *
- */
- public function index()
- {
- $data['message'] = Message::where('index_show',1)->where('switch',1)->order('sort desc')->find();
- $data['activity'] = Activity::where('index_show',1)->where('switch',1)->order('sort desc')->find();
- $this->success('请求成功',$data);
- }
- /**
- * 消息判断
- */
- public function message()
- {
- $user = $this->auth->getUser();
- $status = 0;
- if (!$user) return $this->success('',['status'=>0]);
- $userCommunity = CommunityModel::where('uid',$user['id'])->column('id');
- $str = implode(',',$userCommunity);
- $comment = Db::name('community_comment')
- ->where('c_id',"in",$str)
- ->order('create_time desc')->select();
- if (!empty($comment)) {
- foreach ($comment as $k=>$v) {
- if (strtotime($v['create_time']) > $user['see_message_time']) $status = 1;
- }
- }
- $data = Db::name('admin_message')->order('create_time desc')->select();
- foreach ($data as $m=>$n) {
- if (strtotime($n['create_time'])>$user['see_message_time']) $status=1;
- }
- return $this->success('',['status'=>$status]);
- }
- /**
- * 轮播图
- *
- */
- public function banner()
- {
- $data['banner'] = Db::name('banner')->select();
- foreach ( $data['banner'] as &$v) {
- $v['image'] = config('site.httpurl').$v['image'];
- }
- $user = $this->auth->getUser();
- if ($user) {
- $park = Park::where('id',$user['p_id'])->find();
- if ($park) {
- $data['park_name'] = $park['name'];
- } else {
- $data['park_name'] = '';
- }
- } else {
- $data['park_name'] = '';
- }
- return $this->success('',$data);
- }
- /**
- * 公告
- * @param string $page 页数
- * @param string $limit 条数
- */
- public function notice()
- {
- $page = $this->request->get('page');
- $limit = $this->request->get('limit');
- if (!$page) {
- $fen = '0,10';
- } else {
- $page = $page - 1;
- if ($page<0) $page = 0;
- $fen = $page.','.$limit;
- }
- $data = Db::name('notice')
- ->where('switch',1)
- ->limit($fen)
- ->order('sort desc')
- ->select();
- foreach ( $data as &$v) {
- $v['create_time'] = date('Y-m-d',$v['create_time']);
- $v['content'] = str_replace('src="','src="'.config('site.httpurl'),$v['content']);
- }
- return $this->success('',$data);
- }
- /**
- * 公告详情
- *
- * @param string $id 广告id
- */
- public function NoticeInfo()
- {
- $id = $this->request->get('id');
- $data = Db::name('notice')
- ->where('id',$id)
- ->find();
- $data['create_time'] = date('Y-m-d',$data['create_time']);
- $data['content'] = str_replace('src="','src="'.config('site.httpurl'),$data['content']);
- return $this->success('',$data);
- }
- /**
- * 广告位
- * @param string $page 页数
- * @param string $limit 条数
- */
- public function gg()
- {
- $page = $this->request->get('page');
- $limit = $this->request->get('limit');
- if (!$page) {
- $fen = '0,10';
- } else {
- $page = $page - 1;
- if ($page<0) $page = 0;
- $fen = $page.','.$limit;
- }
- $data = Db::name('gg')
- ->where('switch',1)
- ->order('sort desc')
- ->limit($fen)
- ->select();
- foreach ($data as &$v) {
- $v['image'] = config('site.httpurl').$v['image'];
- $v['images'] = config('site.httpurl').$v['images'];
- $v['content'] = str_replace('src="','src="'.config('site.httpurl'),$v['content']);
- }
- return $this->success('',$data);
- }
- /**
- * 广告详情
- *
- * @param string $id 广告id
- */
- public function GgInfo()
- {
- $id = $this->request->get('id');
- $data = Db::name('gg')
- ->where('id',$id)
- ->find();
- $data['image'] = config('site.httpurl').$data['image'];
- $data['images'] = explode(',',$data['images']);
- foreach ($data['images'] as &$v) {
- $v = config('site.httpurl').$v;
- }
- $data['content'] = str_replace('src="','src="'.config('site.httpurl'),$data['content']);
- return $this->success('',$data);
- }
- /**
- * 广告位申请
- * @ApiMethod (POST)
- * @param string $name id
- * @param string $mobile id
- * @param string $notice id
- *
- */
- public function shenqing()
- {
- $data = $this->request->post();
- if (!isset($data['name']) || empty($data['name'])) return $this->error('请输入姓名');
- if (!isset($data['mobile']) || empty($data['mobile'])) return $this->error('请输入手机号');
- if (!isset($data['notice']) || empty($data['notice'])) return $this->error('请输入具体需求');
- $user = $this->auth->getUser();
- if (!$user) return $this->error(__('Please login first'), null, 401);
- $data['uid'] = $user['id'];
- $data['create_time'] = date('Y-m-d H:i:s',time());
- // $isert = Db::name('gg_shenqing')->where('uid',$user['id'])->find();
- //
- // if ($isert) return $this->error('您已经申请过了');
- $add = Db::name('gg_shenqing')->insert($data);
- return $this->error('提交失败');
- }
- /**
- * 便携号码
- * @param string $page 页数
- * @param string $limit 条数
- */
- public function protable()
- {
- $page = $this->request->get('page');
- $limit = $this->request->get('limit');
- if (!$page) {
- $fen = '0,10';
- } else {
- $page = $page - 1;
- if ($page<0) $page = 0;
- $fen = $page.','.$limit;
- }
- $tableModel = new Protable();
- $data = $tableModel->where('switch',1)
- ->limit($fen)
- ->order('sort desc')
- ->field('id,name,name_eng,image')
- ->select();
- return $this->success('暂无数据',$data);
- }
- /**
- * 便携号码详情
- *
- * @param string $id 号码id
- */
- public function protableInfo()
- {
- $id = $this->request->get('id');
- if (!isset($id) || empty($id)) return $this->error('参数错误');
- $protableModel = new Protable();
- $data = $protableModel->where('id',$id)
- ->field('id,title1,mobile1,title2,mobile2')
- ->find();
- $data['info'] = Db::name('protable_info')
- ->where('p_id',$data['id'])
- ->where('switch',1)
- ->order('sort desc')
- ->select();
- return $this->success('暂无数据',$data);
- }
- }
|