// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\admin\controller\store; use think\response\Json; use app\admin\controller\Controller; use app\admin\model\store\Api as ApiModel; /** * 商家后台API权限控制器 * Class Api * @package app\store\controller */ class Api extends Controller { /** * 权限列表 * @return Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function index(): Json { $model = new ApiModel; $list = $model->getList(); return $this->renderSuccess(compact('list')); } /** * 新增权限 * @return Json */ public function add(): Json { // 新增记录 $model = new ApiModel; if ($model->add($this->postForm())) { return $this->renderSuccess('添加成功'); } return $this->renderError($model->getError() ?: '添加失败'); } /** * 编辑权限 * @param int $apiId * @return Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function edit(int $apiId): Json { // 权限详情 $model = ApiModel::detail($apiId); // 更新记录 if ($model->edit($this->postForm())) { return $this->renderSuccess('更新成功'); } return $this->renderError($model->getError() ?: '更新失败'); } /** * 删除权限 * @param int $apiId * @return Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function delete(int $apiId): Json { // 权限详情 $model = ApiModel::detail($apiId); if (!$model->remove()) { return $this->renderError($model->getError() ?: '删除失败'); } return $this->renderSuccess('删除成功'); } }