# fwCategory

打开服务市场指定类目 

## API 调用

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

#### API 调用入参

参数名             | 类型       | 是否可选 | 默认值 | 含义
:-------------- | :------- | :--- | :-- | :-----------------------------------------------------------------------------------------------------------------------
`query`         | `Object` |      |     |
`query.catMapId`  | `string` |  可选    |  53306016 | 服务市场类目ID


#### API 响应结果

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


#### 调用示例

```javascript
QN.app.invoke({
      api:'fwCategory',
      query:{
                catMapId : '53306016'  
            
      }
}).then(result => {
    console.log(result);
}, error => {
    console.log(error);
});
    
```
