HomeController.php 5.7 KB
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2019/11/6
 * Time: 9:47
 */

namespace app\admin\controller;


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

class HomeController extends AdminBaseController
{
    public function index()
    {
        $where['delete_time'] = ['eq',0];
        $param = $this->request->param();
        $keyword = empty($param['keyword']) ? '' : $param['keyword'];
        if (!empty($keyword)) {
            $where['home_name'] = ['like', "%$keyword%"];
        }
        $data = Db::name('home')
            ->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([
                'home_name'=>'require',
                'home_address'=>'require',
                'home_phone'=>'require|max:11',
                'thumbnail'=>'require',
                'images'=>'require',
                'content'=>'require'
            ]);
            $validate->message([
                'home_name'=>'家政公司名称不能为空',
                'home_address'=>'家政公司地址不能为空',
                'home_phone.require'=>'家政公司联系电话不能为空',
                'home_phone.max'=>'联系电话最多为11位',
                'thumbnail'=>'缩略图不能为空',
                'images'=>'轮播图不能为空',
                'content'=>'详情不能为空'
            ]);
            if (!$validate->check($param)) {
                $this->error($validate->getError());
            }
            $param['images'] = implode(',',$param['images']);
            Db::name('home')
                ->insert($param);
            $this->success('添加成功!','index');

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

    //修改
    public function edit(){
        $id=$this->request->param('id', 0, 'intval');
        if($this->request->isPost()){
            $param=$this->request->param();
            $validate = new Validate([
                'home_name'=>'require',
                'home_address'=>'require',
                'home_phone'=>'require|max:11',
                'thumbnail'=>'require',
                'images'=>'require',
                'content'=>'require'
            ]);
            $validate->message([
                'home_name'=>'家政公司名称不能为空',
                'home_address'=>'家政公司地址不能为空',
                'home_phone.require'=>'家政公司联系电话不能为空',
                'home_phone.max'=>'联系电话最多为11位',
                'thumbnail'=>'缩略图不能为空',
                'images'=>'轮播图不能为空',
                'content'=>'详情不能为空'
            ]);
            if (!$validate->check($param)) {
                $this->error($validate->getError());
            }
            $param['images'] = implode(',',$param['images']);
            $param['update_time'] = time();
            $data = Db::name('home')
                ->where('id',$id)
                ->update($param);
            if($data){
                $this->success('更新成功!','');
            }else{
                $this->error('sql执行错误');
            }
        }else{
            $data=Db::name('home')
                ->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('home')
                ->where(['id' => $id])
                ->update(['delete_time' => time()]);
            if($resultPortal){
                $this->success("删除成功", '');
            }else{
                $this->error("删除失败", '');
            }
        }
    }

    //家政公司类表
    public function select()
    {
        $where['delete_time'] = ['eq',0];
        $param = $this->request->param();
        $keyword = empty($param['keyword']) ? '' : $param['keyword'];
        if (!empty($keyword)) {
            $where['home_name'] = ['like', "%$keyword%"];
        }
        $data = Db::name('home')
            ->where($where)
            ->order('id desc')
            ->paginate(10);
        $list=$data->items();
        $this->assign('page',$data->render());
        $this->assign('data',$list);
        $this->assign('keyword', isset($param['keyword']) ? $param['keyword'] : '');
        $this->assign('ids',empty($param['ids']) ? '' : $param['ids']);
        return $this->fetch();
    }

    //查看服务类目
    public function service()
    {
        $id=$this->request->param('id', 0, 'intval');
        $keyword=$this->request->param('keyword');
        $data = Db::name('service')
            ->alias('a')
            ->join('home r','a.home_id=r.id')
            ->field('a.*,r.home_name')
            ->where('a.delete_time',0)
            ->where('r.id',$id)
            ->order('a.id desc')
            ->paginate(10);
        $list=$data->items();
        $this->assign([
            'keyword'=>$keyword,
            'data'=>$list,
            'page'=>$data->render(),
        ]);
        return $this->fetch();
    }
}