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->vip_experience = sysconf('vip_experience'); $this->user_level = UserLevel::column('name','id'); $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('参数设置保存成功!'); } } }