service = WxUploadService::getInstance(); } /** * 图片上传(转账凭证) * @Method POST */ public function image(): JsonResponse { $file = request()->file('file'); return jok( $this->service->uploadImage($file), '上传成功' ); } }