| 12345678910111213141516171819 |
- cc.Class({
- extends: cc.BaseClass,
- properties: {
- m_LabGold:cc.Label,
- },
- ctor:function () {
- },
- onLoad:function(){
-
- },
-
- OnShowClubUser:function(UserID, Score,type){
- this.m_UserID = UserID;
- this.$('UserNode@UserCtrl').SetUserByID(UserID);
- this.m_LabGold.string = type == 0 ?'贈送'+ (Score/window.PLATFORM_RATIO)+'積分':'撤銷'+(Score/window.PLATFORM_RATIO)+'積分';
- },
- });
|