RedPackeItemView.ts 633 B

12345678910111213141516171819202122232425
  1. /*
  2. * @Author: mojunshou 1637302775@qq.com
  3. * @Date: 2025-03-20 18:39:37
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-03-25 15:59:59
  6. * @Description: 红包列表item
  7. */
  8. import { _decorator } from 'cc';
  9. import { oops } from 'db://oops-framework/core/Oops';
  10. import { GameComponent } from "db://oops-framework/module/common/GameComponent";
  11. import { UIID } from '../../common/config/GameUIConfig';
  12. const { ccclass, property } = _decorator;
  13. /** 显示对象控制 */
  14. @ccclass('RedPackeItemView')
  15. export class RedPackeItemView extends GameComponent {
  16. protected start() {
  17. this.setButton();
  18. }
  19. }