title = '开放平台参数配置'; $this->fetch(); } /** * 修改开放平台参数 * @auth true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function edit() { $this->_applyFormToken(); if ($this->request->isGet()) { $this->fetch('form'); } else { $post = $this->request->post(); foreach ($post as $k => $v) sysconf($k, $v); $this->success('参数修改成功!'); } } }