| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\admin\system\diy;
- use app\common\repositories\system\diy\PageCategoryRepository;
- use app\common\repositories\system\diy\PageLinkRepository;
- use crmeb\basic\BaseController;
- use think\App;
- /**
- * 页面链接分类
- */
- class PageCategroy extends BaseController
- {
- protected $repository;
- public function __construct(App $app, PageCategoryRepository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * 列表
- * @return mixed
- * @author Qinii
- */
- public function lst()
- {
- $where['is_mer'] = $this->request->param('type', 0);
- return app('json')->success($this->repository->getFormatList($where));
- }
- /**
- * 创建表单
- * @Author:Qinii
- * @Date: 2020/5/11
- * @return mixed
- */
- public function createForm()
- {
- $type = $this->request->param('type', 0);
- return app('json')->success(formToData($this->repository->form(0, $type)));
- }
- /**
- * 添加
- * @Author:Qinii
- * @Date: 2020/5/11
- * @return mixed
- */
- public function create()
- {
- $data = $this->request->params([
- 'pid',
- 'type',
- 'name',
- 'status',
- 'sort',
- 'is_mer',
- ['level', 3],
- ]);
- $this->repository->create($data);
- return app('json')->success('添加成功');
- }
- /**
- * 修改表单
- * @Author:Qinii
- * @Date: 2020/5/11
- * @param $id
- * @return mixed
- */
- public function updateForm($id)
- {
- return app('json')->success(formToData($this->repository->form($id)));
- }
- /**
- * 修改
- * @Author:Qinii
- * @Date: 2020/5/11
- * @param $id
- * @return mixed
- */
- public function update($id)
- {
- $data = $this->request->params([
- 'pid',
- 'type',
- 'name',
- 'status',
- 'sort',
- 'is_mer'
- ]);
- $this->repository->update($id, $data);
- return app('json')->success('编辑成功');
- }
- /**
- * 获取子分类
- * @Author:Qinii
- * @Date: 2020/5/11
- * @return mixed
- */
- public function options()
- {
- $type = $this->request->param('type', 0);
- return app('json')->success($this->repository->getSonCategoryList($type, 0));
- }
- /**
- * 修改表单
- * @param $id
- * @return \think\response\Json
- * @author Qinii
- */
- public function switchStatus($id)
- {
- $status = $this->request->param('status') == 1 ? 1 : 0;
- $this->repository->update($id, ['status' => $status]);
- return app('json')->success('修改成功');
- }
- /**
- * 删除
- * @param $id
- * @return \think\response\Json
- * @author Qinii
- */
- public function delete($id)
- {
- $this->repository->delete($id);
- return app('json')->success('删除成功');
- }
- }
|