|
@@ -88,7 +88,7 @@
|
|
|
timestamp: single.timestamp, // 必填,生成签名的时间戳
|
|
|
nonceStr: single.nonceStr, // 必填,生成签名的随机串
|
|
|
signature: single.signature, // 必填,签名
|
|
|
- jsApiList: ["updateAppMessageShareData","updateTimelineShareData",'showMenuItems'] // 必填,需要使用的JS接口列表
|
|
|
+ jsApiList: ["updateAppMessageShareData","updateTimelineShareData",'showMenuItems','hideMenuItems'] // 必填,需要使用的JS接口列表
|
|
|
});
|
|
|
wx.ready(function() {
|
|
|
|
|
@@ -96,6 +96,10 @@
|
|
|
wx.error(function(res) {
|
|
|
// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
|
|
|
});
|
|
|
+
|
|
|
+ wx.hideMenuItems({
|
|
|
+ menuList: ['menuItem:share:qq','menuItem:share:QZone'] // 要隐藏的菜单项,只能隐藏“传播类”和“保护类”按钮,所有menu项见附录3
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -115,6 +119,8 @@
|
|
|
color8:"#FFF4EB",
|
|
|
color9:"#8B654D",
|
|
|
color10:"#FCF6F1",
|
|
|
+ contentColor:"#B1B1B1",
|
|
|
+ titleColor:"#262626",
|
|
|
BASE_URL:"https://dm-api.elab-plus.cn",//默认环境
|
|
|
}
|
|
|
}
|