Config.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <?php
  2. namespace app\data\controller\base;
  3. use think\admin\Controller;
  4. /**
  5. * 应用参数配置
  6. * Class Config
  7. * @package app\data\controller\base
  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. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function cropper()
  41. {
  42. $this->title = '邀请二维码设置';
  43. $this->skey = 'cropper';
  44. $this->__sysdata('cropper');
  45. }
  46. /**
  47. * 内容页面管理
  48. * @auth true
  49. * @menu true
  50. */
  51. public function pageHome()
  52. {
  53. $this->title = '内容页面管理';
  54. $this->fetch('page_home');
  55. }
  56. /**
  57. * 内容页面编辑
  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 pageEdit()
  64. {
  65. $this->skey = input('type') ?: $this->pageTypes[0];
  66. $this->title = '编辑' . $this->pageTypes[$this->skey] ?? '';
  67. $this->__sysdata('page_form', 'javascript:history.back()');
  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 iconHome()
  78. {
  79. $this->skey = 'IconHome';
  80. $this->title = '首页推荐位管理';
  81. $this->__sysdata('slider');
  82. }
  83. /**
  84. * 首页轮播图片
  85. * @menu true
  86. * @auth true
  87. * @throws \think\db\exception\DataNotFoundException
  88. * @throws \think\db\exception\DbException
  89. * @throws \think\db\exception\ModelNotFoundException
  90. */
  91. public function sliderHome()
  92. {
  93. $this->skey = 'SliderHome';
  94. $this->title = '首页轮播图片';
  95. $this->__sysdata('slider');
  96. }
  97. /**
  98. * 显示并保存配置
  99. * @param string $template 模板文件名称
  100. * @throws \think\db\exception\DataNotFoundException
  101. * @throws \think\db\exception\DbException
  102. * @throws \think\db\exception\ModelNotFoundException
  103. */
  104. private function __sysconf(string $template)
  105. {
  106. if ($this->request->isGet()) {
  107. $this->fetch($template);
  108. }
  109. if ($this->request->isPost()) {
  110. $data = $this->request->post();
  111. foreach ($data as $k => $v) sysconf($k, $v);
  112. $this->success('配置保存成功!');
  113. }
  114. }
  115. /**
  116. * 显示并保存数据
  117. * @param string $template 模板文件
  118. * @param string $history 跳转处理
  119. * @throws \think\db\exception\DataNotFoundException
  120. * @throws \think\db\exception\DbException
  121. * @throws \think\db\exception\ModelNotFoundException
  122. */
  123. private function __sysdata(string $template, $history = '')
  124. {
  125. if ($this->request->isGet()) {
  126. $this->data = sysdata($this->skey);
  127. $this->fetch($template);
  128. }
  129. if ($this->request->isPost()) {
  130. if (is_string(input('data'))) {
  131. $data = json_decode(input('data'), true) ?: [];
  132. } else {
  133. $data = $this->request->post();
  134. }
  135. if (sysdata($this->skey, $data) !== false) {
  136. $this->success('内容保存成功!', $history);
  137. } else {
  138. $this->error('内容保存失败,请稍候再试!');
  139. }
  140. }
  141. }
  142. }