Authored by maelk-liu

Update OfflineS.md

... ... @@ -1043,6 +1043,42 @@ code为200即为成功,否则是失败。
}
```
## 线下店useCoupon接口 ##
#### 说明
购物车结算(app.Shopping.offlineUseCoupon)
#### 请求参数
| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
|:-------| -----:|-----:|-----:|-----:|----:|
|uid|int|否|3236556|0|用户id|
|cart_type|string|是|ordinary|ordinary|购物车类型|
|delivery_way|int|否|1|1|快递方式,1 普通 2 加急 99免运费|
|coupon_code|string|是|b123456||优惠券code|
|buy_type|int|是|1|1|购买方式,1店员购买,2用户自行购买|
|shopping_key|String|是|Y123876|Y123876|手环编号|
### 响应
code为200即为成功,否则是失败。
响应JSON格式如下所示:
```json
```json
{
"alg": "SALT_MD5",
"code": 200,
"data": {
{
"coupon_amount": 10,
"coupon_code": "aocejgo35v3neu",
"coupon_title": "111",
"uid": 8041876
}
},
"md5": "c743135bb9ee4afe3c522c59e64604ea",
"message": "offline compute list."
}
```
... ...