85 lines
1.9 KiB
JavaScript
85 lines
1.9 KiB
JavaScript
/*******************************************************************************
|
|
*
|
|
* 活动: 時光遺塵
|
|
*
|
|
*
|
|
******************************************************************************/
|
|
|
|
const ActBase = require( "act.base" );
|
|
|
|
const ActTimeDust = cc.Class( {
|
|
|
|
extends: ActBase,
|
|
|
|
// 初始化配置数据
|
|
initConfig: function() {
|
|
|
|
// 视图附着
|
|
nx.plugin.add( this, [ "view" ] );
|
|
this.vattach( "Acts" );
|
|
},
|
|
|
|
// 注册协议接受事件
|
|
registerProtocals: function() {
|
|
|
|
this.RegisterProtocal( 16603, this.handle16603.bind( this ) ); // 請求子活動相關,來取相關的顯示數據
|
|
this.RegisterProtocal( 16604, this.backGetTimeDustFree.bind( this ) ); // 請求子活動相關,來取相關的顯示數據
|
|
|
|
},
|
|
|
|
// 从服务器初始化数据
|
|
reqBaseFromServer: function( _cb ) {
|
|
|
|
nx.dt.fnInvoke( _cb, true );
|
|
this.reqBaseData();
|
|
},
|
|
|
|
// 请求活动信息
|
|
reqBaseData: function( _cb ) {
|
|
this.reqTimeDustData( _cb );
|
|
},
|
|
|
|
// ============================================================
|
|
// 月卡操作
|
|
// ============================================================
|
|
|
|
// 请求时光遗尘信息
|
|
reqTimeDustData: function( _cb ) {
|
|
|
|
this.SendProtocal( 16603, {
|
|
bid : this.data.camp_id,
|
|
}, _cb );
|
|
},
|
|
|
|
// 请求相關配置信息
|
|
handle16603: function( _data ) {
|
|
|
|
if( _data.bid == this.data.camp_id ){
|
|
this.vset( "timedust", _data );
|
|
return;
|
|
}
|
|
|
|
},
|
|
|
|
reqGetTimeDustFree: function( _aim ){
|
|
|
|
this.SendProtocal( 16604, {
|
|
bid : this.data.camp_id,
|
|
aim : _aim,
|
|
arg : 0
|
|
});
|
|
|
|
},
|
|
|
|
backGetTimeDustFree : function( _data ){
|
|
|
|
if( nx.dt.strNEmpty( _data.msg ) ){
|
|
nx.tbox( _data.msg );
|
|
}
|
|
|
|
},
|
|
|
|
} );
|
|
|
|
// 模块导出
|
|
module.exports = ActTimeDust; |