cms first commit
This commit is contained in:
80
catch/cms/controller/FormFields.php
Normal file
80
catch/cms/controller/FormFields.php
Normal file
@@ -0,0 +1,80 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Catch-CMS Design On 2020
|
||||
// +----------------------------------------------------------------------
|
||||
// | CatchAdmin [Just Like ~ ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace catchAdmin\cms\controller;
|
||||
|
||||
use catcher\base\CatchRequest as Request;
|
||||
use catcher\CatchResponse;
|
||||
use catcher\base\CatchController;
|
||||
use catchAdmin\cms\model\FormFields as formFieldsModel;
|
||||
|
||||
class FormFields extends CatchController
|
||||
{
|
||||
protected $formFieldsModel;
|
||||
|
||||
public function __construct(FormFieldsModel $formFieldsModel)
|
||||
{
|
||||
$this->formFieldsModel = $formFieldsModel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表
|
||||
* @time 2020年12月27日 20:28
|
||||
* @param Request $request
|
||||
*/
|
||||
public function index(Request $request) : \think\Response
|
||||
{
|
||||
return CatchResponse::paginate($this->formFieldsModel->getList());
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存信息
|
||||
* @time 2020年12月27日 20:28
|
||||
* @param Request $request
|
||||
*/
|
||||
public function save(Request $request) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->formFieldsModel->storeBy($request->post()));
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取
|
||||
* @time 2020年12月27日 20:28
|
||||
* @param $id
|
||||
*/
|
||||
public function read($id) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->formFieldsModel->findBy($id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新
|
||||
* @time 2020年12月27日 20:28
|
||||
* @param Request $request
|
||||
* @param $id
|
||||
*/
|
||||
public function update(Request $request, $id) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->formFieldsModel->updateBy($id, $request->post()));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @time 2020年12月27日 20:28
|
||||
* @param $id
|
||||
*/
|
||||
public function delete($id) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->formFieldsModel->deleteBy($id));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user