request->isAjax()) { $post = $this->request->post(); ConfigServer::set('faceSheet', 'type', $post['type'], $this->shop_id); ConfigServer::set('kd100', 'kd100_key', $post['kd100_key'], $this->shop_id); ConfigServer::set('kd100', 'kd100_secret', $post['kd100_secret'], $this->shop_id); ConfigServer::set('kd100', 'kd100_siid', $post['kd100_siid'], $this->shop_id); return JsonServer::success('修改成功'); } $faceSheet = ConfigServer::get('faceSheet', null,null, $this->shop_id); $detail = ConfigServer::get('kd100', null, null, $this->shop_id); return view('', [ 'detail' => $detail, 'faceSheet' => $faceSheet ]); } }