Content_equip.js 272 B

12345678910111213141516
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. myIndex: -1,
  5. StoreViewScp:null
  6. },
  7. onSetStoreView(node){
  8. this.StoreViewScp = node.getComponent("StoreView");
  9. },
  10. onPayEquipPopView() {
  11. this.StoreViewScp.onPayEquipPopView(this.myIndex)
  12. },
  13. })