112 lines
3.0 KiB
PHP
112 lines
3.0 KiB
PHP
<?php
|
|
|
|
|
|
namespace app\admin\controller\content;
|
|
|
|
|
|
use app\admin\logic\content\HelpCategoryLogic;
|
|
use app\admin\validate\content\HelpCategoryValidate;
|
|
use app\common\basics\AdminBase;
|
|
use app\common\server\JsonServer;
|
|
|
|
class HelpCategory extends AdminBase
|
|
{
|
|
/**
|
|
* @NOTES: 帮助分类列表
|
|
* @author: 张无忌
|
|
*/
|
|
public function lists()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
$get = $this->request->get();
|
|
$lists = HelpCategoryLogic::lists($get);
|
|
return JsonServer::success("获取成功", $lists);
|
|
}
|
|
|
|
return view();
|
|
}
|
|
|
|
/**
|
|
* @NOTES: 添加帮助分类
|
|
* @author: 张无忌
|
|
*/
|
|
public function add()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
(new HelpCategoryValidate())->goCheck('add');
|
|
$post = $this->request->post();
|
|
$res = HelpCategoryLogic::add($post);
|
|
if ($res === false) {
|
|
$error = HelpCategoryLogic::getError() ?: '新增失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('新增成功');
|
|
}
|
|
|
|
|
|
return view();
|
|
}
|
|
|
|
/**
|
|
* @NOTES: 编辑帮助分类
|
|
* @author: 张无忌
|
|
*/
|
|
public function edit()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
(new HelpCategoryValidate())->goCheck('edit');
|
|
$post = $this->request->post();
|
|
$res = HelpCategoryLogic::edit($post);
|
|
if ($res === false) {
|
|
$error = HelpCategoryLogic::getError() ?: '编辑失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('编辑成功');
|
|
}
|
|
|
|
$id = $this->request->get('id');
|
|
return view('', [
|
|
'detail' => HelpCategoryLogic::detail($id)
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @NOTES: 删除帮组分类
|
|
* @author: 张无忌
|
|
*/
|
|
public function del()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
(new HelpCategoryValidate())->goCheck('id');
|
|
$id = $this->request->post('id');
|
|
$res = HelpCategoryLogic::del($id);
|
|
if ($res === false) {
|
|
$error = HelpCategoryLogic::getError() ?: '删除失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('删除成功');
|
|
}
|
|
|
|
return JsonServer::error('异常');
|
|
}
|
|
|
|
/**
|
|
* @Notes: 隐藏帮助分类
|
|
* @Author: 张无忌
|
|
*/
|
|
public function hide()
|
|
{
|
|
if ($this->request->isAjax()) {
|
|
(new HelpCategoryValidate())->goCheck('id');
|
|
$id = $this->request->post('id');
|
|
$res = HelpCategoryLogic::hide($id);
|
|
if ($res === false) {
|
|
$error = HelpCategoryLogic::getError() ?: '操作失败';
|
|
return JsonServer::error($error);
|
|
}
|
|
return JsonServer::success('操作成功');
|
|
}
|
|
|
|
return JsonServer::success('异常');
|
|
}
|
|
} |