Config.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\service\controller;
  15. use library\Controller;
  16. /**
  17. * 开放平台参数配置
  18. * Class Config
  19. * @package app\service\controller
  20. */
  21. class Config extends Controller
  22. {
  23. /**
  24. * 定义当前操作表名
  25. * @var string
  26. */
  27. public $table = 'WechatServiceConfig';
  28. /**
  29. * 显示参数配置
  30. * @auth true
  31. * @menu true
  32. */
  33. public function index()
  34. {
  35. $this->title = '开放平台参数配置';
  36. $this->fetch();
  37. }
  38. /**
  39. * 修改参数配置
  40. * @auth true
  41. * @throws \think\Exception
  42. * @throws \think\exception\PDOException
  43. */
  44. public function edit()
  45. {
  46. $this->applyCsrfToken();
  47. if ($this->request->isGet()) {
  48. $this->fetch('form');
  49. } else {
  50. $post = $this->request->post();
  51. foreach ($post as $k => $v) sysconf($k, $v);
  52. $this->success('参数修改成功!');
  53. }
  54. }
  55. }