12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace app\controller\api\store\merchant;
- use app\common\repositories\user\UserMerchantRepository;
- use think\App;
- use ln\basic\BaseController;
- use app\common\repositories\system\merchant\MerchantRepository as repository;
- class Merchant extends BaseController
- {
- protected $repository;
- protected $userInfo;
- /**
- * ProductCategory constructor.
- * @param App $app
- * @param repository $repository
- */
- public function __construct(App $app, repository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- $this->userInfo =$this->request->isLogin() ? $this->request->userInfo():null;
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/27
- * @return mixed
- */
- public function lst()
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['keyword', 'order', 'is_best', 'location', 'category_id', 'type_id']);
- return app('json')->success($this->repository->getList($where, $page, $limit, $this->userInfo));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/29
- * @param $id
- * @return mixed
- */
- public function detail($id)
- {
- if (!$this->repository->apiGetOne($id))
- return app('json')->fail('店铺已打烊');
- if ($this->request->isLogin()) {
- app()->make(UserMerchantRepository::class)->updateLastTime($this->request->uid(), intval($id));
- }
- return app('json')->success($this->repository->detail($id, $this->userInfo));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/29
- * @param $id
- * @return mixed
- */
- public function productList($id)
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['keyword','order','mer_cate_id','cate_id', 'order', 'price_on', 'price_off', 'brand_id', 'pid']);
- if(!$this->repository->apiGetOne($id)) return app('json')->fail(' 店铺已打烊');
- return app('json')->success($this->repository->productList($id,$where, $page, $limit,$this->userInfo));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/29
- * @param int $id
- * @return mixed
- */
- public function categoryList($id)
- {
- if(!$this->repository->merExists($id))
- return app('json')->fail('店铺已打烊');
- return app('json')->success($this->repository->categoryList($id));
- }
- public function qrcode($id)
- {
- if(!$this->repository->merExists($id))
- return app('json')->fail('店铺已打烊');
- $url = $this->request->param('type') == 'routine' ? $this->repository->routineQrcode(intval($id)) : $this->repository->wxQrcode(intval($id));
- return app('json')->success(compact('url'));
- }
- }
|