21 lines
509 B
JavaScript
21 lines
509 B
JavaScript
/******************************************************************
|
|
*
|
|
* 当前VIP信息
|
|
*
|
|
******************************************************************/
|
|
|
|
cc.Class( {
|
|
|
|
extends: cc.Component,
|
|
|
|
properties: {
|
|
|
|
imgTip: { default: null, type: cc.Sprite },
|
|
nodLevel: { default: null, type: cc.Node },
|
|
tipRich: { default: null, type: cc.RichText },
|
|
txtProg: { default: null, type: cc.Label },
|
|
curProg: { default: null, type: cc.ProgressBar },
|
|
},
|
|
|
|
} );
|