subscribeMsg() {
let that = this
let tmplId = ['8cJUTf_0cPYnzl_Fi3Dac7uDZZy_E8ZrcSz23mTJuu0','Q2toXRUHz9MPwL3a4KBgbKas5nqXYa92Me3uXln_JLg']; //['gh8CVR5Qn0-an','YqJnLuXMt7027NAEBB0p'] 一条或者多条
//var template_ids = app.globalData.tmplIds;
wx.requestSubscribeMessage({
tmplIds: tmplId,//template_ids
success(res) {
if (res[tmplId] == 'accept') { //某条订阅信息 接收或者拒绝
} else if (res[tmplId] == 'reject') { // 用户拒绝受权
wx.showModal({
title: '舒适提示',
content: "您已关闭消息推送,如须要消息推送服务,请点击肯定跳转设置页面打开受权后再次尝试。",
success: function(modal) {
if (modal.confirm) { // 点击肯定
wx.openSetting({ withSubscriptions: true })
}
}
})
}
},
fail(err) {