Config.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php
  2. namespace app\data\controller;
  3. use think\admin\Controller;
  4. /**
  5. * 应用参数配置
  6. * Class Config
  7. * @package app\data\controller
  8. */
  9. class Config extends Controller
  10. {
  11. /**
  12. * 页面类型
  13. * @var array
  14. */
  15. protected $pageTypes = [
  16. '关于我们' => '关于我们',
  17. '用户协议' => '用户协议',
  18. ];
  19. /**
  20. * 微信小程序配置
  21. * @auth true
  22. * @menu true
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\DbException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. */
  27. public function wxapp()
  28. {
  29. $this->title = '微信小程序配置';
  30. $this->__sysconf('wxapp');
  31. }
  32. /**
  33. * 内容页面管理
  34. * @auth true
  35. * @menu true
  36. */
  37. public function pageHome()
  38. {
  39. $this->title = '内容页面管理';
  40. $this->fetch('page_home');
  41. }
  42. /**
  43. * 内容页面编辑
  44. * @auth true
  45. * @throws \think\db\exception\DataNotFoundException
  46. * @throws \think\db\exception\DbException
  47. * @throws \think\db\exception\ModelNotFoundException
  48. */
  49. public function pageEdit()
  50. {
  51. $this->skey = input('type') ?: $this->pageTypes[0];
  52. $this->title = '编辑' . $this->pageTypes[$this->skey] ?? '';
  53. $this->__sysdata('page_form', 'javascript:history.back()');
  54. }
  55. /**
  56. * 首页推荐位管理
  57. * @menu true
  58. * @auth true
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\DbException
  61. * @throws \think\db\exception\ModelNotFoundException
  62. */
  63. public function iconHome()
  64. {
  65. $this->skey = 'IconHome';
  66. $this->title = '首页推荐位管理';
  67. $this->__sysdata('slider');
  68. }
  69. /**
  70. * 首页轮播图片
  71. * @menu true
  72. * @auth true
  73. * @throws \think\db\exception\DataNotFoundException
  74. * @throws \think\db\exception\DbException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. */
  77. public function sliderHome()
  78. {
  79. $this->skey = 'SliderHome';
  80. $this->title = '首页轮播图片';
  81. $this->__sysdata('slider');
  82. }
  83. /**
  84. * 显示并保存配置
  85. * @param string $template 模板文件名称
  86. * @throws \think\db\exception\DataNotFoundException
  87. * @throws \think\db\exception\DbException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. */
  90. private function __sysconf(string $template)
  91. {
  92. if ($this->request->isGet()) {
  93. $this->fetch($template);
  94. }
  95. if ($this->request->isPost()) {
  96. $data = $this->request->post();
  97. foreach ($data as $k => $v) sysconf($k, $v);
  98. $this->success('配置保存成功!');
  99. }
  100. }
  101. /**
  102. * 显示并保存数据
  103. * @param string $template 模板文件
  104. * @param string $history 跳转处理
  105. * @throws \think\db\exception\DataNotFoundException
  106. * @throws \think\db\exception\DbException
  107. * @throws \think\db\exception\ModelNotFoundException
  108. */
  109. private function __sysdata(string $template, $history = '')
  110. {
  111. if ($this->request->isGet()) {
  112. $this->data = sysdata($this->skey);
  113. $this->fetch($template);
  114. }
  115. if ($this->request->isPost()) {
  116. if (is_string(input('data'))) {
  117. $data = json_decode(input('data'), true) ?: [];
  118. } else {
  119. $data = $this->request->post();
  120. }
  121. if (sysdata($this->skey, $data) !== false) {
  122. $this->success('内容保存成功!', $history);
  123. } else {
  124. $this->error('内容保存失败,请稍候再试!');
  125. }
  126. }
  127. }
  128. }