Config.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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::querySmsBalance();
  36. $this->fetch();
  37. }
  38. /**
  39. * 保存商城参数
  40. * @auth true
  41. * @throws \think\Exception
  42. * @throws \think\exception\PDOException
  43. */
  44. public function save()
  45. {
  46. if ($this->request->isPost()) {
  47. $this->applyCsrfToken('save');
  48. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  49. $this->success('商城短信配置保存成功!');
  50. }
  51. }
  52. }