Config.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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\store\controller;
  15. use app\store\service\ExtendService;
  16. use library\Controller;
  17. /**
  18. * 活动参数配置
  19. * Class Config
  20. * @package app\store\controller
  21. */
  22. class Config extends Controller
  23. {
  24. /**
  25. * 活动参数配置
  26. * @auth true
  27. * @menu true
  28. * @throws \think\Exception
  29. * @throws \think\exception\PDOException
  30. */
  31. public function index()
  32. {
  33. $this->title = '活动参数配置';
  34. $this->applyCsrfToken('save');
  35. $this->query = ExtendService::queryChinaSmsBalance();
  36. $this->query2 = ExtendService::queryGlobeSmsBalance();
  37. $this->fetch();
  38. }
  39. /**
  40. * 保存商城参数
  41. * @auth true
  42. * @throws \think\Exception
  43. * @throws \think\exception\PDOException
  44. */
  45. public function save()
  46. {
  47. if ($this->request->isPost()) {
  48. $this->applyCsrfToken('save');
  49. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  50. $this->success('活动参数设置保存成功!');
  51. }
  52. }
  53. }