getAliappConfig()); } /** * 设置支付宝配置信息 * @return Response */ public function set() { $data = $this->request->params([ ['name', ''], ['app_id', ''], ['private_key', ''], ['aes_key', ''], ['public_key_crt', ''], ['alipay_public_key_crt', ''], ['alipay_with_crt', ''], ['qrcode', ''] ]); // $this->validate($data, 'app\validate\channel\Aliapp.set'); (new AliappConfigService())->setAliappConfig($data); return success('SET_SUCCESS'); } /** * 静态资源 * @return Response */ public function static() { return success((new AliappConfigService())->static()); } }