|
@@ -267,7 +267,7 @@ public class WxGzhServiceImpl implements IWxGzhService {
|
|
for (Map school : schools) {
|
|
for (Map school : schools) {
|
|
String name = (String) school.get("name");
|
|
String name = (String) school.get("name");
|
|
String code = (String) school.get("code");
|
|
String code = (String) school.get("code");
|
|
- buffer.append("<a href=\"weixin://bizmsgmenu?msgmenuid=s" + code + "&msgmenucontent=选好了\">" + name + "</a>").append("\n");
|
|
|
|
|
|
+ buffer.append("<a href=\"weixin://bizmsgmenu?msgmenuid=" + code + "&msgmenucontent=选好了\">" + name + "</a>").append("\n");
|
|
return MessageUtil.initText(fromUserName, toUserName, buffer.toString());
|
|
return MessageUtil.initText(fromUserName, toUserName, buffer.toString());
|
|
}
|
|
}
|
|
//如果输出的是驾校,则返回二维码
|
|
//如果输出的是驾校,则返回二维码
|
|
@@ -326,7 +326,7 @@ public class WxGzhServiceImpl implements IWxGzhService {
|
|
for (Map school: schools){
|
|
for (Map school: schools){
|
|
String name = (String) school.get("name");
|
|
String name = (String) school.get("name");
|
|
String code = (String)school.get("code");
|
|
String code = (String)school.get("code");
|
|
- buffer.append("<a href=\"weixin://bizmsgmenu?msgmenuid=s"+code+"&msgmenucontent=选好了\">"+name+"</a>").append("\n");
|
|
|
|
|
|
+ buffer.append("<a href=\"weixin://bizmsgmenu?msgmenuid="+code+"&msgmenucontent=选好了\">"+name+"</a>").append("\n");
|
|
}
|
|
}
|
|
return MessageUtil.initText(fromUserName, toUserName, buffer.toString());
|
|
return MessageUtil.initText(fromUserName, toUserName, buffer.toString());
|
|
|
|
|