From e04f81915e100107eca5fe16ba44898f3a0dbd55 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 04 七月 2020 18:48:06 +0800 Subject: [PATCH] redis指定数据库 --- fanli/src/main/java/com/yeshi/fanli/controller/h5/H5RecommendController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/h5/H5RecommendController.java b/fanli/src/main/java/com/yeshi/fanli/controller/h5/H5RecommendController.java index 06c96ed..bca8ba6 100644 --- a/fanli/src/main/java/com/yeshi/fanli/controller/h5/H5RecommendController.java +++ b/fanli/src/main/java/com/yeshi/fanli/controller/h5/H5RecommendController.java @@ -487,7 +487,7 @@ data.put("coupon", hasCoupon); data.put("couponAmount", discount); data.put("couponPrice", JDUtil.getQuanPrice(jdGoods)); - data.put("helpLink", configService.get("jd_share_h5_help_link")); + data.put("helpLink", configService.getValue("jd_share_h5_help_link",acceptData.getSystem())); data.put("jumpLink", jumpLink); JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data)); @@ -567,7 +567,7 @@ data.put("coupon", hasCoupon); data.put("couponAmount", amount); data.put("couponPrice", PinDuoDuoUtil.getQuanPrice(pddGoods)); - data.put("helpLink", configService.get("pdd_share_h5_help_link")); + data.put("helpLink", configService.getValue("pdd_share_h5_help_link",acceptData.getSystem())); data.put("jumpLink", jumpLink); JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data)); -- Gitblit v1.8.0