getWeappConfig()); } /** * 设置微信小程序配置信息 * @return Response */ public function set() { $data = $this->request->params([ ['weapp_name', ''], ['weapp_original', ''], ['app_id', ''], ['app_secret', ''], ['token', ''], ['encoding_aes_key', ''], ['qr_code', ''], ['encryption_type', ''], ['upload_private_key', ''] ]); $this->validate($data, 'app\validate\channel\Weapp.set'); (new WeappConfigService())->setWeappConfig($data); return success('SET_SUCCESS'); } }