# openReportShare

打开战报分享页面 

## API 调用

### QN.app.invoke({api:'openReportShare', query})

#### API 调用入参

参数名             | 类型       | 是否可选 | 默认值 | 含义
:-------------- | :------- | :--- | :-- | :-----------------------------------------------------------------------------------------------------------------------
`query`         | `Object` |      |     |
`query.type`  | `string` |  可选    |  11 | "11"表示打开双11战报分享页面


#### API 响应结果

参数名      | 类型  | 示例 | 含义
:------- | :-- | :----- | :---
`result` | `*` |        | 请求响应


#### 调用示例

```javascript
QN.app.invoke({
      api:'openReportShare',
      query:{
                type : '11'  
            
      }
}).then(result => {
    console.log(result);
}, error => {
    console.log(error);
});
    
```
