Authored by maelk-liu

Update OfflineS.md

@@ -1043,6 +1043,42 @@ code为200即为成功,否则是失败。 @@ -1043,6 +1043,42 @@ code为200即为成功,否则是失败。
1043 } 1043 }
1044 ``` 1044 ```
1045 1045
  1046 +## 线下店useCoupon接口 ##
  1047 +#### 说明
  1048 +购物车结算(app.Shopping.offlineUseCoupon)
  1049 +#### 请求参数
  1050 +| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
  1051 +|:-------| -----:|-----:|-----:|-----:|----:|
  1052 +|uid|int|否|3236556|0|用户id|
  1053 +|cart_type|string|是|ordinary|ordinary|购物车类型|
  1054 +|delivery_way|int|否|1|1|快递方式,1 普通 2 加急 99免运费|
  1055 +|coupon_code|string|是|b123456||优惠券code|
  1056 +|buy_type|int|是|1|1|购买方式,1店员购买,2用户自行购买|
  1057 +|shopping_key|String|是|Y123876|Y123876|手环编号|
  1058 +
  1059 +
  1060 +### 响应
  1061 +code为200即为成功,否则是失败。
  1062 +响应JSON格式如下所示:
  1063 +
  1064 +```json
  1065 +```json
  1066 +{
  1067 + "alg": "SALT_MD5",
  1068 + "code": 200,
  1069 + "data": {
  1070 + {
  1071 + "coupon_amount": 10,
  1072 + "coupon_code": "aocejgo35v3neu",
  1073 + "coupon_title": "111",
  1074 + "uid": 8041876
  1075 + }
  1076 + },
  1077 + "md5": "c743135bb9ee4afe3c522c59e64604ea",
  1078 + "message": "offline compute list."
  1079 +}
  1080 +```
  1081 +
1046 1082
1047 1083
1048 1084