| 1234567891011121314 |
- import { _decorator, Component, Node, Label, Layers } from 'cc';
- const { ccclass, property } = _decorator;
- @ccclass('DayPrizeTips')
- export class DayPrizeTips extends Component {
- @property({ type: Label })
- public label: Label;
- public onParams(data) {
- if (data) {
- this.label.string = "恭喜提升奖励进度";
- }
- }
- }
|