PointController.php 4.7 KB
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2019/11/11
 * Time: 13:17
 */

namespace app\admin\controller;


use cmf\controller\AdminBaseController;
use think\Db;
use think\Validate;

class PointController extends AdminBaseController
{
    public function index()
    {
        $where['delete_time'] = ['eq',0];
        $param = $this->request->param();
        $keyword = empty($param['keyword']) ? '' : $param['keyword'];
        if (!empty($keyword)) {
            $where['point_name'] = ['like', "%$keyword%"];
        }
        $data = Db::name('point')
            ->where($where)
            ->order('id desc')
            ->paginate(10);
        $list=$data->items();
        $this->assign([
            'keyword'=>$keyword,
            'data'=>$list,
            'page'=>$data->render(),
        ]);
        return $this->fetch();
    }

    //添加
    public function add()
    {
        if($this->request->isPost()){
            $param=$this->request->param();
            $param['create_time']=time();
            $validate = new Validate([
                'point_name'=>'require',
                'thumbnail'=>'require',
                'address'=>'require',
            ]);
            $validate->message([
                'point_name'=>'回收站名称不能为空',
                'thumbnail'=>'缩略图不能为空',
                'address'=>'详细地址不能为空'
            ]);
            if (!$validate->check($param)) {
                $this->error($validate->getError());
            }
            //获取经纬度
            $url = 'https://apis.map.qq.com/ws/geocoder/v1/?address='.$param['address'].'&key=LQNBZ-F3L34-EQMUR-DILMD-LBR4Q-GDFOH';

            $result=file_get_contents($url);
            $res=json_decode($result,true);
            print_r($res);exit;
            //经度
            $param['lng']= $res['result']['location']['lng'];
            //纬度
            $param['lat']= $res['result']['location']['lat'];

            Db::name('point')
                ->insert($param);
            $this->success('添加成功!','index');

        }else{
            return $this->fetch();
        }
    }


    public function map()
    {
        $location = $this->request->param('location');
        $location = explode(',', $location);
        $lng      = empty($location[0]) ? 116.424966 : $location[0];
        $lat      = empty($location[1]) ? 39.907851 : $location[1];

        $this->assign(['lng' => $lng, 'lat' => $lat]);
        return $this->fetch();
    }

    //修改
    public function edit(){
        $id=$this->request->param('id', 0, 'intval');
        if($this->request->isPost()){
            $param=$this->request->param();
            $param['update_time'] = time();
            $validate = new Validate([
                'point_name'=>'require',
                'thumbnail'=>'require',
                'address'=>'require',
            ]);
            $validate->message([
                'point_name'=>'回收站名称不能为空',
                'thumbnail'=>'缩略图不能为空',
                'address'=>'详细地址不能为空'
            ]);
            if (!$validate->check($param)) {
                $this->error($validate->getError());
            }
            //获取经纬度
            $url='http://api.map.baidu.com/geocoder/v2/?address='.$param['address'].'&output=json&ak=cIGo3zYrN4WOEnMDSbxynUi9M20i9IgY';
            $result=file_get_contents($url);
            $res=json_decode($result,true);
            //经度
            $param['lng']= $res['result']['location']['lng'];
            //纬度
            $param['lat']= $res['result']['location']['lat'];

            $data = Db::name('point')
                ->where('id',$id)
                ->update($param);
            if($data){
                $this->success('更新成功!','index');
            }else{
                $this->error('sql执行错误');
            }

        }else{
            $data=Db::name('point')
                ->where('id',$id)
                ->find();
            $keyword = $this->request->param('keyword');
            $this->assign('data',$data);
            $this->assign('keyword', isset($keyword) ? $keyword : '');
            return $this->fetch();
        }
    }

    //删除
    public function delete(){
        $param = $this->request->param();
        if (isset($param['id'])) {
            $id = $this->request->param('id', 0, 'intval');
            $resultPortal = Db::name('point')
                ->where(['id' => $id])
                ->update(['delete_time' => time()]);
            if($resultPortal){
                $this->success("删除成功", '');
            }else{
                $this->error("删除失败", '');
            }
        }
    }
}