ShopMain.js 404 B

123456789101112131415161718192021222324
  1. cc.Class({
  2. extends: cc.Component,
  3. editor: {
  4. menu: 'Shop/ShopMain'
  5. },
  6. properties: {
  7. goldNumText: cc.Label,
  8. },
  9. onLoad () {
  10. this.initUI();
  11. },
  12. initUI() {
  13. let goldNum = G.BagMgr.getItemNumById(JMC.ITEM_ID.SPECIAL_GOLD);
  14. },
  15. typeChooseToggleOnClicked(toggleData, eventKey) {
  16. G.LogUtils.log('###########', eventKey);
  17. }
  18. });