// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\store\controller\dealer; use think\response\Json; use app\store\controller\Controller; use app\store\model\dealer\Setting as SettingModel; /** * 分销设置 * Class Setting * @package app\store\controller\apps\dealer */ class Setting extends Controller { /** * 获取分销设置 (全部) * @return Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function all(): Json { // 获取分销设置(全部) $setting = SettingModel::getAll(); return $this->renderSuccess(compact('setting')); } /** * 获取分销设置 (指定) * @param string $key * @return Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function detail(string $key): Json { $detail = SettingModel::getItem($key); return $this->renderSuccess(compact('detail')); } /** * 更新分销设置 * @return Json */ public function update(): Json { $model = new SettingModel; if ($model->edit($this->postForm())) { return $this->renderSuccess('更新成功'); } return $this->renderError($model->getError() ?: '更新失败'); } }