52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
|
/************************************************************************************
|
||
|
|
||
|
* FileName : Layout_UISeason.ts
|
||
|
* Description :
|
||
|
* Version : v1.0.0
|
||
|
* CreateTime : 2024-12-30 16:57:07
|
||
|
* Author :
|
||
|
* Copyright (c) since 2024
|
||
|
* ==============================================================
|
||
|
* Method Description:
|
||
|
*
|
||
|
* ==============================================================
|
||
|
************************************************************************************/
|
||
|
import { _decorator, Component, Node, Button, Label, Sprite } from 'cc';
|
||
|
const { ccclass, property } = _decorator;
|
||
|
|
||
|
@ccclass('Layout_UISeason')
|
||
|
export class Layout_UISeason extends Component {
|
||
|
@property(Button)
|
||
|
closeBtn : Button = null;
|
||
|
|
||
|
@property(Node)
|
||
|
content : Node = null;
|
||
|
|
||
|
@property(Node)
|
||
|
cell : Node = null;
|
||
|
/** 赛季主题 */
|
||
|
@property(Label)
|
||
|
seasonName : Label = null;
|
||
|
/** 赛季主题按钮 */
|
||
|
@property(Button)
|
||
|
seasonBtn : Button = null;
|
||
|
/** 段位名称 */
|
||
|
@property(Label)
|
||
|
danName : Label = null;
|
||
|
/** 段位图标 */
|
||
|
@property(Sprite)
|
||
|
danIcon : Sprite = null;
|
||
|
/** 赛季总场数 */
|
||
|
@property(Label)
|
||
|
totalCount : Label = null;
|
||
|
/** 赛季夺冠数 */
|
||
|
@property(Label)
|
||
|
winCount : Label = null;
|
||
|
/** 赛季前四次数 */
|
||
|
@property(Label)
|
||
|
topFourCount : Label = null;
|
||
|
|
||
|
@property(Button)
|
||
|
danBtn : Button = null;
|
||
|
|
||
|
}
|