| 1234567891011121314151617181920 |
- /*
- * @Author: mojunshou 1637302775@qq.com
- * @Date: 2025-03-21 17:43:04
- * @LastEditors: mojunshou 1637302775@qq.com
- * @LastEditTime: 2025-03-21 18:37:05
- * @Description: 提现预约表界面
- *
- */
- import { _decorator } from 'cc';
- import { GameComponent } from "db://oops-framework/module/common/GameComponent";
- const { ccclass, property } = _decorator;
- /** 显示对象控制 */
- @ccclass('ReserveView')
- export class ReserveView extends GameComponent {
- protected start() {
- }
- }
|