| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- cc.Class({
- extends: cc.BaseClass,
- properties: {
-
- },
- InitPre:function(){
- if(this.m_LbCnt1 == null) this.m_LbCnt1 = this.$('Cnt1@Label');
- if(this.m_LbCnt2 == null) this.m_LbCnt2 = this.$('Cnt2@Label');
- if(this.m_LbCnt3 == null) this.m_LbCnt3 = this.$('Cnt3@Label');
- if(this.m_LbCnt4 == null) this.m_LbCnt4 = this.$('Cnt4@Label');
- this.node.active = false;
- },
- SetPreInfo:function(ParaArr){//[i+1,Res[i][0],Res[i][1], RandType]); index userid cnt type
- switch(ParaArr[1][1]){
- case 0:this.OnShowGameInfor(ParaArr[1][0]);return;
- case 1:this.OnShowScoreInfor(ParaArr[1][0]);return;
- case 2:this.OnShowRevenceInfor(ParaArr[1][0]);return;
- case 3:this.OnShowRoomInfor(ParaArr[1][0]);return;
- default:return;
- }
- },
- OnShowGameInfor:function(arr){
- this.m_LbCnt1.string = arr[1];
- this.m_LbCnt2.string = Score2Str(parseInt(arr[0]));
- this.m_LbCnt3.string = arr[2].replace(/ /,'\n');
- this.node.active = true;
- },
- OnShowScoreInfor:function(arr){
- this.m_LbCnt1.string = arr[2]>0?'贈送':'撤銷';
- var strLv = '';
- if(arr[1]==CLUB_LEVEL_OWNER){
- strLv = '老闆';
- }else if(arr[1]==CLUB_LEVEL_MANAGER){
- strLv = '管理員';
- }
- else if(arr[1]==CLUB_LEVEL_PARTNER){
- strLv = '合夥人';
- }
- else if(arr[1]==CLUB_LEVEL_MEMBER){
- strLv = '會員';
- }
- this.m_LbCnt2.string = strLv;
- this.m_LbCnt3.string = Score2Str(parseInt(arr[2]));
- this.m_LbCnt4.string = arr[3].replace(/ /,'\n');
- this.node.active = true;
- },
- OnShowRevenceInfor:function(arr){
- this.m_LbCnt1.string = arr[0];
- this.m_LbCnt2.string = Score2Str(parseInt(arr[1]));
- this.m_LbCnt3.string = arr[2].replace(/ /,'\n');
- this.node.active = true;
- },
- OnShowRoomInfor:function(arr){
- this.m_LbCnt1.string = arr[1];
- this.m_LbCnt2.string = arr[0];
- this.m_LbCnt3.string = arr[3];
- this.m_LbCnt4.string = arr[2];
- this.node.active = true;
- },
- // update (dt) {},
- });
|