123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\admin\store;
- use app\validate\admin\StoreCategoryValidate as validate;
- use think\App;
- use crmeb\basic\BaseController;
- use app\common\repositories\store\StoreCategoryRepository as repository;
- class StoreCategory extends BaseController
- {
- /**
- * @var repository|ArticleCategoryRepository
- */
- protected $repository;
- /**
- * ArticleCategory constructor.
- * @param App $app
- * @param ArticleCategoryRepository $repository
- */
- public function __construct(App $app, repository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * 列表
- * @return mixed
- * @author Qinii
- */
- public function lst()
- {
- return app('json')->success($this->repository->getFormatList($this->request->merId()));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/11
- * @return mixed
- */
- public function createForm()
- {
- return app('json')->success(formToData($this->repository->form($this->request->merId())));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/11
- * @param $id
- * @return mixed
- */
- public function updateForm($id)
- {
- if (!$this->repository->merExists($this->request->merId(), $id))
- return app('json')->fail('数据不存在');
- return app('json')->success(formToData($this->repository->updateForm($this->request->merId(),$id)));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/11
- * @param validate $validate
- * @return mixed
- */
- public function create(validate $validate)
- {
- $data = $this->checkParams($validate);
- $data['cate_name'] = trim($data['cate_name']);
- if($data['cate_name'] == '') return app('json')->fail('分类名不可为空');
- if ($data['pid'] && !$this->repository->merExists($this->request->merId(), $data['pid']))
- return app('json')->fail('上级分类不存在');
- if ($data['pid'] && !$this->repository->checkLevel($data['pid'],0,$this->request->merId()))
- return app('json')->fail('不可添加更低阶分类');
- $data['mer_id'] = $this->request->merId();
- $this->repository->create($data);
- return app('json')->success('添加成功');
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/11
- * @param $id
- * @param validate $validate
- * @return mixed
- */
- public function update($id,validate $validate)
- {
- $data = $this->checkParams($validate);
- if(!$this->repository->checkUpdate($id,$data['pid'])){
- if (!$this->repository->merExists($this->request->merId(), $id))
- return app('json')->fail('数据不存在');
- if ($data['pid'] && !$this->repository->merExists($this->request->merId(), $data['pid']))
- return app('json')->fail('上级分类不存在');
- if ($data['pid'] && !$this->repository->checkLevel($data['pid'],0,$this->request->merId()))
- return app('json')->fail('不可添加更低阶分类');
- if (!$this->repository->checkChangeToChild($id,$data['pid']))
- return app('json')->fail('无法修改到当前分类到子集,请先修改子类');
- if (!$this->repository->checkChildLevel($id,$data['pid']))
- return app('json')->fail('子类超过最低限制,请先修改子类');
- }
- $this->repository->update($id,$data);
- return app('json')->success('编辑成功');
- }
- /**
- * 修改状态
- * @param int $id
- * @return mixed
- * @author Qinii
- */
- public function switchStatus($id)
- {
- $status = $this->request->param('status', 0) == 1 ? 1 : 0;
- if (!$this->repository->merExists($this->request->merId(), $id))
- return app('json')->fail('数据不存在');
- $this->repository->switchStatus($id, $status);
- return app('json')->success('修改成功');
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/11
- * @param $id
- * @return mixed
- */
- public function delete($id)
- {
- if (!$this->repository->merExists($this->request->merId(), $id))
- return app('json')->fail('数据不存在');
- if ($this->repository->hasChild($id))
- return app('json')->fail('该分类存在子集,请先处理子集');
- $this->repository->delete($id);
- return app('json')->success('删除成功');
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/11
- * @param $id
- * @return mixed
- */
- public function detail($id)
- {
- if (!$this->repository->merExists($this->request->merId(), $id))
- return app('json')->fail('数据不存在');
- return app('json')->success($this->repository->get($id));
- }
- /**
- * 验证
- * @param WechatNewsValidate $validate
- * @param bool $isCreate
- * @return array
- * @author Qinii
- */
- public function checkParams(validate $validate)
- {
- $data = $this->request->params(['pid','cate_name','is_show','pic','sort']);
- $validate->check($data);
- return $data;
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/16
- * @return mixed
- */
- public function getTreeList()
- {
- return app('json')->success($this->repository->getTreeList($this->request->merId()));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @return mixed
- */
- public function getList()
- {
- return app('json')->success($this->repository->getList());
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @return mixed
- */
- public function BrandList()
- {
- return app('json')->success($this->repository->getBrandList());
- }
- }
|