IsLogin(); // 权限校验 $this->IsPower(); } /** * [Index 配置列表] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-06T21:31:53+0800 */ public function Index() { // 配置信息 $this->assign('data', ConfigService::ConfigList()); // 导航 $type = input('type', 'sms'); $this->assign('nav_type', $type); if($type == 'sms') { return $this->fetch('index'); } else { return $this->fetch('message'); } } /** * [Save 配置数据保存] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-01-02T23:08:19+0800 */ public function Save() { return ConfigService::ConfigSave($_POST); } } ?>