// +---------------------------------------------------------------------- namespace app\adminapi\controller\v1\setting; use app\adminapi\controller\AuthController; use app\services\system\config\SystemConfigServices; use app\services\system\config\SystemConfigTabServices; use think\facade\App; /** * 配置分类 * Class SystemConfigTab * @package app\adminapi\controller\v1\setting */ class SystemConfigTab extends AuthController { /** * g构造方法 * SystemConfigTab constructor. * @param App $app * @param SystemConfigTabServices $services */ public function __construct(App $app, SystemConfigTabServices $services) { parent::__construct($app); $this->services = $services; } /** * 显示资源列表 * * @return \think\Response */ public function index() { $where = $this->request->getMore([ ['status', ''], ['title', ''] ]); return app('json')->success($this->services->getConfgTabList($where)); } /** * 显示创建资源表单页. * * @return \think\Response */ public function create() { return app('json')->success($this->services->createForm()); } /** * 保存新建的资源 * * @return \think\Response */ public function save() { $data = $this->request->postMore([ 'eng_title', 'status', 'title', 'icon', ['type', 0], ['sort', 0], ['pid', 0], ['menus_id', 0], ]); if (is_array($data['pid'])) $data['pid'] = end($data['pid']); if (!$data['title']) return app('json')->fail(400291); $this->services->save($data); return app('json')->success(400292); } /** * 显示指定的资源 * * @param int $id * @return \think\Response */ public function read($id) { // } /** * 显示编辑资源表单页. * * @param int $id * @return \think\Response */ public function edit($id) { return app('json')->success($this->services->updateForm((int)$id)); } /** * 保存更新的资源 * * @param int $id * @return \think\Response */ public function update($id) { $data = $this->request->postMore([ 'title', 'status', 'eng_title', 'icon', ['type', 0], ['sort', 0], ['pid', 0], ['menus_id', 0], ]); if (is_array($data['pid'])) $data['pid'] = end($data['pid']); if (!$data['title']) return app('json')->fail(400291); if (!$data['eng_title']) return app('json')->fail(400275); $this->services->update($id, $data); return app('json')->success(100001); } /** * 删除指定资源 * * @param int $id * @return \think\Response */ public function delete(SystemConfigServices $services, $id) { if ($services->count(['tab_id' => $id])) { return app('json')->fail(400293); } if (!$this->services->delete($id)) return app('json')->fail(100008); else return app('json')->success(100002); } /** * 修改状态 * @param $id * @param $status * @return mixed */ public function set_status($id, $status) { if ($status == '' || $id == 0) { return app('json')->fail(100100); } $this->services->update($id, ['status' => $status]); return app('json')->success(100014); } }