ReserveView.ts 493 B

1234567891011121314151617181920
  1. /*
  2. * @Author: mojunshou 1637302775@qq.com
  3. * @Date: 2025-03-21 17:43:04
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-03-21 18:37:05
  6. * @Description: 提现预约表界面
  7. *
  8. */
  9. import { _decorator } from 'cc';
  10. import { GameComponent } from "db://oops-framework/module/common/GameComponent";
  11. const { ccclass, property } = _decorator;
  12. /** 显示对象控制 */
  13. @ccclass('ReserveView')
  14. export class ReserveView extends GameComponent {
  15. protected start() {
  16. }
  17. }