|
|
@@ -296,10 +296,8 @@ public class WechatMsgSendServiceImpl implements IWechatMsgSendService {
|
|
|
if (StringUtils.isBlank(ops.get())) {
|
|
|
JSONObject body = new JSONObject();
|
|
|
JSONObject jumpWxa = new JSONObject();
|
|
|
- JSONObject query = new JSONObject();
|
|
|
- query.put("id","id="+id);
|
|
|
jumpWxa.put("path","/pages/earlyWarningManage/earlyWarningDetail");
|
|
|
- jumpWxa.put("query",query);
|
|
|
+ jumpWxa.put("query","id="+id);
|
|
|
body.put("jump_wxa", jumpWxa);
|
|
|
String respData = HttpUtil.post(url,JSON.toJSONString(body));
|
|
|
log.info("UrlScheme 返回参数=====》{}", respData);
|