|
@@ -76,8 +76,13 @@ public class CdfHkProductApiController {
|
|
* 东涌店:2
|
|
* 东涌店:2
|
|
* 柬中免店:3
|
|
* 柬中免店:3
|
|
* 会员购店:12
|
|
* 会员购店:12
|
|
|
|
+ * https://ar.cdfmembers.com/spu?showType=makeup&spuId=p15685542&storeId=1&userId=601131887&AccessToken=05508E6249DF10D42876C63E6823E98AAFCA8B1CD592F0D5B5A112BF3B51BB01BD5C8661A63D9D16039DA34FD0352B184F892FAB146A3531&cookieId=24fb1f47-cf3f-4a3d-c0fe-62be0c99a400
|
|
*/
|
|
*/
|
|
JSONArray skuList = cdfHKClient.getSkuList(productId, productSourceId);
|
|
JSONArray skuList = cdfHKClient.getSkuList(productId, productSourceId);
|
|
|
|
+ for (Object o : skuList) {
|
|
|
|
+ JSONObject obj = (JSONObject) o;
|
|
|
|
+ obj.put("url",obj.getString("url") + "&spuId=" + productId +"&storeId="+productSource);
|
|
|
|
+ }
|
|
productById.setSkuList(skuList);
|
|
productById.setSkuList(skuList);
|
|
return ResultData.ok(productById);
|
|
return ResultData.ok(productById);
|
|
}
|
|
}
|