Commit 1a9ac6e4 by kaisa

feat:新增cid:55 点击vip引导页面跳转到对应的官号链接

parent 8aa658fc
Showing with 5 additions and 5 deletions
......@@ -838,19 +838,19 @@ webAppComm.prototype.calendarReminders = function (title, content, time, tipCont
webAppCollaboration(obj2);
}
// 70: 跳转全屏任务界面
webAppComm.prototype.jumpToAllPageTask = function (type) {
// 55: 打开外部对应APP并链接到对应的账号
webAppComm.prototype.openChatApp = function (appType,officialId) {
let obj = {
"cid": 70,
"cid": 55,
"data": {
"taskType": type // 1:新手任务 2:每日任务 3:主播任务 4:奖励领取
"appType": appType, // whatsapp、line、wechat
"officialId": officialId
}
}
let obj2 = JSON.stringify(obj);
webAppCollaboration(obj2);
}
//接收客戶端的消息
webAppComm.prototype.reMsgFromApp = function (callback) {
callback && callback();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment