ClubUpdateScore.js 476 B

12345678910111213141516171819
  1. cc.Class({
  2. extends: cc.BaseClass,
  3. properties: {
  4. m_LabGold:cc.Label,
  5. },
  6. ctor:function () {
  7. },
  8. onLoad:function(){
  9. },
  10. OnShowClubUser:function(UserID, Score,type){
  11. this.m_UserID = UserID;
  12. this.$('UserNode@UserCtrl').SetUserByID(UserID);
  13. this.m_LabGold.string = type == 0 ?'贈送'+ (Score/window.PLATFORM_RATIO)+'積分':'撤銷'+(Score/window.PLATFORM_RATIO)+'積分';
  14. },
  15. });