songxingwei 3 年之前
父节点
当前提交
3ed24ea0d2
共有 1 个文件被更改,包括 0 次插入60 次删除
  1. 0 60
      application/store/controller/Config.php

+ 0 - 60
application/store/controller/Config.php

@@ -1,60 +0,0 @@
-<?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::queryChinaSmsBalance();
-        $this->query2 = ExtendService::queryGlobeSmsBalance();
-        $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('商城短信配置保存成功!');
-        }
-    }
-
-}