mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?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\store\controller;
|
||
|
||
use app\store\service\ExtendService;
|
||
use library\Controller;
|
||
|
||
/**
|
||
* 商城参数配置
|
||
* Class Config
|
||
* @package app\store\controller
|
||
*/
|
||
class Config extends Controller
|
||
{
|
||
|
||
/**
|
||
* 商城参数配置
|
||
* @auth true
|
||
* @menu true
|
||
* @throws \think\Exception
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->title = '商城参数配置';
|
||
$this->applyCsrfToken('save');
|
||
$this->query = ExtendService::querySmsBalance();
|
||
$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('商城短信配置保存成功!');
|
||
}
|
||
}
|
||
|
||
}
|