1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use app\common\service\ExtendService;
- use library\Controller;
- /**
- * 参数配置
- * Class Official
- * @package app\admin\controller
- */
- class Official extends Controller
- {
- /**
- * 参数配置
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '参数配置';
- $this->applyCsrfToken('save');
- $this->query = ExtendService::queryChinaSmsBalance();
- $this->query2 = ExtendService::queryGlobeSmsBalance();
- $this->crystal_switch = sysconf('crystal_switch');
- $this->sign_money_switch = sysconf('sign_money_switch');
- $this->fetch();
- }
- /**
- * 保存商城参数
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function save()
- {
- if ($this->request->isPost()) {
- $this->applyCsrfToken('save');
- foreach ($this->request->post() as $k => $v) sysconf($k, $v);
- $this->success('参数设置保存成功!');
- }
- }
- }
|