Config.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace catchAdmin\system\controller;
  3. use app\Request;
  4. use catcher\base\CatchController;
  5. use catchAdmin\system\model\Config as ConfigModel;
  6. use catcher\CatchResponse;
  7. use think\response\Json;
  8. class Config extends CatchController
  9. {
  10. protected $configModel;
  11. public function __construct(ConfigModel $configModel)
  12. {
  13. $this->configModel = $configModel;
  14. }
  15. /**
  16. * 获取父级别配置
  17. *
  18. * @time 2020年04月17日
  19. * @throws \think\db\exception\DataNotFoundException
  20. * @throws \think\db\exception\DbException
  21. * @throws \think\db\exception\ModelNotFoundException
  22. * @return Json
  23. */
  24. public function parent()
  25. {
  26. return CatchResponse::success($this->configModel->getParentConfig());
  27. }
  28. /**
  29. * 存储配置
  30. *
  31. * @time 2020年04月17日
  32. * @param Request $request
  33. * @return Json
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\db\exception\DataNotFoundException
  37. */
  38. public function save(Request $request)
  39. {
  40. return CatchResponse::success([
  41. 'id' => $this->configModel->storeBy($request->param()),
  42. 'parents' => $this->configModel->getParentConfig(),
  43. ]);
  44. }
  45. /**
  46. * 获取配置
  47. *
  48. * @time 2020年04月20日
  49. * @param $id
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\DbException
  52. * @throws \think\db\exception\ModelNotFoundException
  53. * @return Json
  54. */
  55. public function read($id)
  56. {
  57. return CatchResponse::success($this->configModel->getConfig($id));
  58. }
  59. }