// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\store\controller\dealer; use app\common\service\qrcode\Poster; use app\store\controller\Controller; use app\store\model\dealer\Referee as RefereeModel; use app\store\model\dealer\User as UserModel; use cores\exception\BaseException; use think\db\exception\DataNotFoundException; use think\db\exception\DbException; use think\db\exception\ModelNotFoundException; use think\response\Json; /** * 分销商管理 * Class User * @package app\store\controller\apps\dealer */ class User extends Controller { /** * 分销商用户列表 * @param string $search 搜索内容 * @return Json */ public function list(string $search = ''): Json { $model = new UserModel; $list = $model->getList($search); return $this->renderSuccess(compact('list')); } /** * 分销商粉丝列表 * @param int $dealerId 分销商ID * @return Json */ public function fans(int $dealerId): Json { $model = new RefereeModel; $list = $model->getList($dealerId, $this->request->param()); return $this->renderSuccess(compact('list')); } /** * 编辑分销商 * @param int $dealerId 分销商ID * @return Json */ public function edit(int $dealerId): Json { $model = UserModel::detail($dealerId); if ($model->edit($this->postForm())) { return $this->renderSuccess('更新成功'); } return $this->renderError($model->getError() ?: '更新失败'); } /** * 删除分销商 * @param int $dealerId 分销商ID * @return Json */ public function delete(int $dealerId): Json { $model = UserModel::detail($dealerId); if (!$model->setDelete()) { return $this->renderError($model->getError() ?: '删除失败'); } return $this->renderSuccess('删除成功'); } /** * 分销商二维码 * @param int $dealerId 分销商ID * @param string $channel 渠道 * @return Json * @throws BaseException * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public function poster(int $dealerId, string $channel = 'H5'): Json { $model = UserModel::detail($dealerId); $Qrcode = new Poster($model, $channel); return $this->renderSuccess(['imageUrl' => $Qrcode->getImage()]); } /** * @notes:工程师分销商 * @return Json * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException * @author: wanghousheng */ public function getEngineer(): Json { $list = UserModel::getEngineer(); return $this->renderSuccess(compact('list')); } }