Official.php 2.0 KB

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