123456789101112131415161718192021222324 |
- cc.Class({
- extends: cc.Component,
- editor: {
- menu: 'Shop/ShopMain'
- },
- properties: {
- goldNumText: cc.Label,
- },
- onLoad () {
- this.initUI();
- },
- initUI() {
- let goldNum = G.BagMgr.getItemNumById(JMC.ITEM_ID.SPECIAL_GOLD);
- },
- typeChooseToggleOnClicked(toggleData, eventKey) {
- G.LogUtils.log('###########', eventKey);
- }
- });
|