MailDetails.js 503 B

1234567891011121314151617
  1. cc.Class({
  2. extends: cc.BaseClass,
  3. OnSetInfo:function(title,msg,hook){
  4. this.$('Title@Label').string = title;
  5. this.$('ScrollView/view/content@Label').string = msg;
  6. this.m_Hook = hook;
  7. },
  8. OnBtDelClick:function(){
  9. g_CurScene.ShowAlert('確定刪除此郵件?',Alert_YesNo,function(Res){
  10. if(Res){
  11. this.m_Hook.onSendDel();
  12. this.node.active = false;
  13. }
  14. }.bind(this));
  15. },
  16. });