| 12345678910111213141516171819202122232425 |
- /*
- * @Author: mojunshou 1637302775@qq.com
- * @Date: 2025-03-20 18:39:37
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-03-25 15:59:59
- * @Description: 红包列表item
- */
- import { _decorator } from 'cc';
- import { oops } from 'db://oops-framework/core/Oops';
- import { GameComponent } from "db://oops-framework/module/common/GameComponent";
- import { UIID } from '../../common/config/GameUIConfig';
- const { ccclass, property } = _decorator;
- /** 显示对象控制 */
- @ccclass('RedPackeItemView')
- export class RedPackeItemView extends GameComponent {
- protected start() {
- this.setButton();
- }
- }
|