64 lines
2.0 KiB
JavaScript
64 lines
2.0 KiB
JavaScript
// Learn cc.Class:
|
|
// - [Chinese] http://www.cocos.com/docs/creator/scripting/class.html
|
|
// - [English] http://www.cocos2d-x.org/docs/editors_and_tools/creator-chapters/scripting/class/index.html
|
|
// Learn Attribute:
|
|
// - [Chinese] http://www.cocos.com/docs/creator/scripting/reference/attributes.html
|
|
// - [English] http://www.cocos2d-x.org/docs/editors_and_tools/creator-chapters/scripting/reference/attributes/index.html
|
|
// Learn life-cycle callbacks:
|
|
// - [Chinese] http://www.cocos.com/docs/creator/scripting/life-cycle-callbacks.html
|
|
// - [English] http://www.cocos2d-x.org/docs/editors_and_tools/creator-chapters/scripting/life-cycle-callbacks/index.html
|
|
|
|
cc.Class({
|
|
extends: cc.Component,
|
|
|
|
properties: {
|
|
// foo: {
|
|
// // ATTRIBUTES:
|
|
// default: null, // The default value will be used only when the component attaching
|
|
// // to a node for the first time
|
|
// type: cc.SpriteFrame, // optional, default is typeof default
|
|
// serializable: true, // optional, default is true
|
|
// },
|
|
// bar: {
|
|
// get () {
|
|
// return this._bar;
|
|
// },
|
|
// set (value) {
|
|
// this._bar = value;
|
|
// }
|
|
// },
|
|
title_message: {
|
|
default: null,
|
|
type: cc.Node
|
|
},
|
|
title_contact: {
|
|
default: null,
|
|
type: cc.Node
|
|
},
|
|
},
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
onLoad : function() {
|
|
this.title_contact.active = false ;
|
|
|
|
this.title_message.active = true ;
|
|
/**
|
|
* 从远程加载数据,如果加载数据失败,则显示提示消息,并注册拖动刷新事件
|
|
*/
|
|
},
|
|
onContacts:function(){
|
|
this.title_contact.active = true ;
|
|
|
|
this.title_message.active = false ;
|
|
},
|
|
onMessage:function(){
|
|
this.title_contact.active = false ;
|
|
|
|
this.title_message.active = true ;
|
|
}
|
|
|
|
|
|
// update (dt) {},
|
|
});
|