69 lines
1.8 KiB
JavaScript
69 lines
1.8 KiB
JavaScript
|
|
"use strict";
|
||
|
|
cc._RF.push(module, '0dce54dcppPFb/CBcQJfeT5', 'act.freeplay.mod');
|
||
|
|
// Scripts/mod/acts/freeplay/act.freeplay.mod.js
|
||
|
|
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
/*******************************************************************************
|
||
|
|
*
|
||
|
|
* 活动: 畅玩礼包
|
||
|
|
*
|
||
|
|
*
|
||
|
|
******************************************************************************/
|
||
|
|
|
||
|
|
var ActBase = require("act.base");
|
||
|
|
var ActFreePlay = cc.Class({
|
||
|
|
"extends": ActBase,
|
||
|
|
// 初始化配置数据
|
||
|
|
initConfig: function initConfig() {
|
||
|
|
// 视图附着
|
||
|
|
nx.plugin.add(this, ["view"]);
|
||
|
|
this.vattach("Acts");
|
||
|
|
},
|
||
|
|
// 注册协议接受事件
|
||
|
|
registerProtocals: function registerProtocals() {
|
||
|
|
this.RegisterProtocal(16603, this.handle16603.bind(this)); // 請求子活動相關,來取相關的顯示數據
|
||
|
|
this.RegisterProtocal(16604, this.handle16604.bind(this)); //
|
||
|
|
},
|
||
|
|
|
||
|
|
// 从服务器初始化数据
|
||
|
|
reqBaseFromServer: function reqBaseFromServer(_cb) {
|
||
|
|
// nx.dt.fnInvoke( _cb, true );
|
||
|
|
this.reqBaseData(_cb);
|
||
|
|
},
|
||
|
|
// 请求活动信息
|
||
|
|
reqBaseData: function reqBaseData(_cb) {
|
||
|
|
this.reqExclusiveData(_cb);
|
||
|
|
},
|
||
|
|
// ============================================================
|
||
|
|
// 操作
|
||
|
|
// ============================================================
|
||
|
|
|
||
|
|
// 请求信息
|
||
|
|
reqExclusiveData: function reqExclusiveData(_cb) {
|
||
|
|
this.SendProtocal(16603, {
|
||
|
|
bid: this.data.camp_id
|
||
|
|
}, _cb);
|
||
|
|
},
|
||
|
|
// 领取礼包
|
||
|
|
reqExclusiveGift: function reqExclusiveGift(aim) {
|
||
|
|
this.SendProtocal(16604, {
|
||
|
|
bid: this.data.camp_id,
|
||
|
|
aim: aim,
|
||
|
|
arg: 0
|
||
|
|
});
|
||
|
|
},
|
||
|
|
// 请求相關配置信息
|
||
|
|
handle16603: function handle16603(_data) {
|
||
|
|
if (_data.bid == this.data.camp_id) {
|
||
|
|
this.vset("FreePlay", _data);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
},
|
||
|
|
handle16604: function handle16604(_data) {}
|
||
|
|
});
|
||
|
|
|
||
|
|
// 模块导出
|
||
|
|
module.exports = ActFreePlay;
|
||
|
|
|
||
|
|
cc._RF.pop();
|