* @date 2017/03/27 14:43 */ class Config extends BasicAdmin { /** * 定义当前操作表名 * @var string */ protected $table = 'SystemConfig'; /** * 微信基础参数配置 * @return \think\response\View */ public function index() { if ($this->request->isGet()) { $this->assign('title', '微信接口配置'); return view(); } $data = $this->request->post(); foreach ($data as $key => $vo) { DataService::save($this->table, ['name' => $key, 'value' => $vo], 'name'); } $this->success('数据修改成功!', ''); } /** * 微信商户参数配置 * @return \think\response\View */ public function pay() { if ($this->request->isGet()) { $this->assign('title', '微信支付配置'); return view(); } $data = $this->request->post(); if (!empty($data['cert_zip_md5'])) { $filename = ROOT_PATH . 'public/upload/' . join('/', str_split($data['cert_zip_md5'], 16)) . '.zip'; if (file_exists($filename)) { $zip = new \PclZip($filename); $dirpath = APP_PATH . 'extra/wechat/cert'; !file_exists($dirpath) && mkdir($dirpath, 0755, true); $result = $zip->extract(PCLZIP_OPT_PATH, $dirpath); dump($result); } } foreach ($data as $key => $vo) { DataService::save($this->table, ['name' => $key, 'value' => $vo], 'name'); } $this->success('数据修改成功!', ''); } }