Commit 74e2c26f by kaisa

feat:更新

parent ce61d6b3
Showing with 13 additions and 0 deletions
......@@ -838,6 +838,19 @@ webAppComm.prototype.calendarReminders = function (title, content, time, tipCont
webAppCollaboration(obj2);
}
// 70: 跳转全屏任务界面
webAppComm.prototype.jumpToAllPageTask = function (type) {
let obj = {
"cid": 70,
"data": {
"taskType": type // 1:新手任务 2:每日任务 3:主播任务 4:奖励领取
}
}
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