Commit 533520b6 by agan

tj

parent cbc6ba11
Showing with 12 additions and 0 deletions
......@@ -492,6 +492,18 @@ webAppComm.prototype.sendBindInfos = function (cid, uid, lang, type) {
webAppCollaboration(obj2);
}
// 40: 跳转任务界面
webAppComm.prototype.jumpToTask = function (type){
let obj = {
"cid": 40,
"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