Config.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. namespace app\store\controller;
  14. use app\store\service\Extend;
  15. use library\Controller;
  16. /**
  17. * 微信商城配置
  18. * Class Config
  19. * @package app\store\controller
  20. */
  21. class Config extends Controller
  22. {
  23. /**
  24. * 微信商城配置
  25. * @throws \think\Exception
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $this->applyCsrfToken();
  31. $this->title = '商城参数配置';
  32. if ($this->request->isGet()) {
  33. $this->query = Extend::querySmsBalance();
  34. return $this->fetch();
  35. }
  36. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  37. $this->success('商城参数配置保存成功!');
  38. }
  39. }