1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- namespace catchAdmin\system\controller;
- use app\Request;
- use catcher\base\CatchController;
- use catchAdmin\system\model\Config as ConfigModel;
- use catcher\CatchResponse;
- use think\response\Json;
- class Config extends CatchController
- {
- protected $configModel;
- public function __construct(ConfigModel $configModel)
- {
- $this->configModel = $configModel;
- }
- /**
- * 获取父级别配置
- *
- * @time 2020年04月17日
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @return Json
- */
- public function parent()
- {
- return CatchResponse::success($this->configModel->getParentConfig());
- }
- /**
- * 存储配置
- *
- * @time 2020年04月17日
- * @param Request $request
- * @return Json
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\db\exception\DataNotFoundException
- */
- public function save(Request $request)
- {
- return CatchResponse::success([
- 'id' => $this->configModel->storeBy($request->param()),
- 'parents' => $this->configModel->getParentConfig(),
- ]);
- }
- /**
- * 获取配置
- *
- * @time 2020年04月20日
- * @param $id
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @return Json
- */
- public function read($id)
- {
- return CatchResponse::success($this->configModel->getConfig($id));
- }
- }
|