// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\store\controller\shop; use think\response\Json; use app\store\controller\Controller; use app\store\model\store\shop\Comment as CommentModel; /** * 门店评论控制器 * Class Clerk * @package app\store\controller\shop */ class Comment extends Controller { /** * 列表记录 * @return Json * @throws \think\db\exception\DbException */ public function list(): Json { // 店员列表 $model = new CommentModel; $list = $model->getList($this->request->param()); return $this->renderSuccess(compact('list')); } /** * 全部记录 * @return Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function all(): Json { // 店员列表 $model = new CommentModel; $list = $model->getAll($this->request->param()); return $this->renderSuccess(compact('list')); } /** * 添加评论 * @return Json */ public function add(): Json { // 新增记录 $model = new CommentModel; if ($model->add($this->postForm())) { return $this->renderSuccess('添加成功'); } return $this->renderError($model->getError() ?: '添加失败'); } /** * 编辑店员 * @param int $commentId * @return Json */ public function edit(int $commentId): Json { // 评论详情 $model = CommentModel::detail($commentId); // 更新记录 if ($model->edit($this->postForm())) { return $this->renderSuccess('更新成功'); } return $this->renderError($model->getError() ?: '更新失败'); } /** * 删除店员 * @param int $commentId * @return Json */ public function delete(int $commentId): Json { // 店员详情 $model = CommentModel::detail($commentId); if (!$model->setDelete()) { return $this->renderError($model->getError() ?: '删除失败'); } return $this->renderSuccess('删除成功'); } }