| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <?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\article\ArticleRepository;
- use app\common\repositories\store\StoreActivityRepository;
- use app\common\repositories\store\StoreCategoryRepository;
- use app\common\repositories\system\diy\DiyRepository;
- use app\common\repositories\system\diy\PageLinkRepository;
- use app\common\repositories\system\groupData\GroupDataRepository;
- use app\common\repositories\system\merchant\MerchantRepository;
- use app\common\repositories\system\diy\PageCategoryRepository;
- use crmeb\basic\BaseController;
- use think\App;
- /**
- * 页面链接
- */
- class PageLink extends BaseController
- {
- protected $repository;
- public function __construct(App $app, PageLinkRepository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * 列表
- * @return \think\response\Json
- * @author Qinii
- */
- public function lst()
- {
- [$page, $limit] = $this->getPage();
- //$where = $this->request->params([['status',1]]);
- $where['is_mer'] = $this->request->param('type', 0);
- return app('json')->success($this->repository->getList($where, $page, $limit));
- }
- /**
- * 添加表单
- * @return \think\response\Json
- * @author Qinii
- */
- public function createForm()
- {
- $isMer = $this->request->param('type', 0);
- return app('json')->success(formToData($this->repository->form(0, $isMer)));
- }
- /**
- * 添加
- * @return \think\response\Json
- * @author Qinii
- */
- public function create()
- {
- $data = $this->request->params([
- 'cate_id',
- 'name',
- 'url',
- 'param',
- 'example',
- 'status',
- 'sort',
- ]);
- $data['is_mer'] = $this->request->param('type', 0);
- $this->repository->create($data);
- return app('json')->success('添加成功');
- }
- /**
- * 修改表单
- * @param $id
- * @return \think\response\Json
- * @author Qinii
- */
- public function updateForm($id)
- {
- $isMer = $this->request->param('type', 0);
- return app('json')->success(formToData($this->repository->form($id, $isMer)));
- }
- /**
- * 修改
- * @param $id
- * @return \think\response\Json
- * @author Qinii
- */
- public function update($id)
- {
- if (!$this->repository->existsWhere(['id' => $id]))
- return app('json')->fail('数据不存在');
- $data = $this->request->params([
- 'cate_id',
- 'name',
- 'url',
- 'param',
- 'example',
- 'status',
- 'sort',
- ]);
- $this->repository->update($id, $data);
- return app('json')->success('编辑成功');
- }
- /**
- * 获取页面链接
- * @param $cate_id
- * @return mixed
- */
- public function getLinks($id, PageCategoryRepository $pageCategoryServices)
- {
- if (!$id) return app('json')->fail('缺少参数');
- $category = $pageCategoryServices->get((int)$id);
- if (!$category) {
- return app('json')->fail('页面分类不存在');
- }
- $type = $this->request->param('type', 0);
- [$page, $limit] = $this->getPage();
- switch ($category['type']) {
- case 'special':
- $diyServices = app()->make(ArticleRepository::class);
- $data = $diyServices->search(0, ['status' => 1], $page, $limit);
- break;
- case 'product_category':
- $storeCategoryServices = app()->make(StoreCategoryRepository::class);
- $data = $storeCategoryServices->getApiFormatList($this->request->merId(), 1);
- break;
- case 'merchant':
- $data = app()->make(MerchantRepository::class)->lst(['mer_state' => 1, 'status' => 1], $page, $limit);
- break;
- case 'active':
- $groupid = $this->request->merId() ? 95 : 94;
- $query = app()->make(GroupDataRepository::class)
- ->getGroupDataWhere($this->request->merId(), $groupid)
- ->where('status', 1);
- $data['count'] = $query->count();
- $data['list'] = $query->page($page, $limit)->select()->toArray();
- break;
- case 'points_cate':
- $storeCategoryServices = app()->make(StoreCategoryRepository::class);
- $data = $storeCategoryServices->getApiFormatList($this->request->merId(), 1, 1);
- break;
- case 'micro':
- $data = app()->make(DiyRepository::class)->getList(['is_diy' => 0], $page, $limit);
- break;
- case 'activity_form': //报名活动
- $where['activity_type'] = StoreActivityRepository::ACTIVITY_TYPE_FORM;
- $where['status'] = 1;
- $where['is_show'] = 1;
- $data = app()->make(StoreActivityRepository::class)->getList($where, $page, $limit);
- break;
- default:
- $data = $this->repository->getLinkList($id, $type == 1 ? 1 : $this->request->merId());
- break;
- }
- return app('json')->success($data);
- }
- /**
- * 删除链接
- * @param $id
- * @return mixed
- */
- public function delete($id)
- {
- if (!$id) return app('json')->fail('参数错误');
- if (!$this->repository->existsWhere(['id' => $id]))
- return app('json')->fail('数据不存在');
- $this->repository->delete($id);
- return app('json')->success('删除成功!');
- }
- /**
- * 状态修改
- * @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('修改成功');
- }
- }
|