AdminRotationController.php 2.8 KB
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 小夏 < 449134904@qq.com>
// +----------------------------------------------------------------------
namespace app\portal\controller;

use app\portal\model\RotationModel;
use cmf\controller\AdminBaseController;
use think\Db;

class AdminRotationController extends AdminBaseController
{
    //轮播图


    //列表
    public function index(){
        $res = Db::name('rotation')
            ->order('id desc')
            ->paginate(10);
        $data = $res->toArray();
        $data = $data['data'];
        $page = $res->render();

        $this->assign('list',$data);
        $this->assign('page',$page);
        return $this->fetch();
    }

    //添加页面
    public function add(){
        return $this->fetch();
    }

    //添加提交
    public function addPost(){
        $data = $this->request->param();
        $result = $this->validate($data, 'AdminRotation.add');
        if ($result !== true) {
            $this->error($result);
        }

        $rotationModel = new RotationModel();
        $res = $rotationModel->create($data);
        if($res){
            $this->success('添加成功!', url('AdminRotation/index'));
        }else{
            $this->error('失败');
        }
    }

    //编辑页面
    public function edit(){
        $id = $this->request->param('id');
        $post = Db::name('rotation')
            ->where(['id'=>$id])
            ->find();
        $this->assign('post',$post);
        return $this->fetch();
    }

    //编辑提交
    public function editPost(){
        $data = $this->request->param();
        $result = $this->validate($data, 'AdminRotation.edit');
        if ($result !== true) {
            $this->error($result);
        }

        $rotationModel = new RotationModel();
        // 显式指定更新数据操作
        $res = $rotationModel->isUpdate(true)->save($data);
        if($res){
            $this->success('保存成功!', url('AdminRotation/index'));
        }else{
            $this->error('失败');
        }
    }

    //删除
    public function delete(){
        $id = $this->request->param('id');
        $rotationModel = new RotationModel();
        $res = $rotationModel->where(['id'=>$id])->delete();
        if($res){
            $this->success('删除成功!');
        }else{
            $this->error('失败');
        }
    }
}