# openShopCard

打开店铺名片 

## API 调用

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

#### API 调用入参

参数名             | 类型       | 是否可选 | 默认值 | 含义
:-------------- | :------- | :--- | :-- | :-----------------------------------------------------------------------------------------------------------------------
`query`         | `Object` |      |     |


#### API 响应结果

参数名      | 类型  | 示例 | 含义
:------- | :-- | :----- | :---
`result` | `*` |        | 请求响应
`query.url`  | `string` |  <need>    |  <default> | 店铺地址
`query.name`  | `string` |  <need>    |  <default> | 店铺名
`query.card`  | `string` |  <need>    |  <default> | 店铺名片图片的uri
`query.shopId`  | `string` |  <need>    |  <default> | 店铺id


#### 调用示例

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