import { _decorator, Component, Node, Label } from 'cc'; const { ccclass, property } = _decorator; @ccclass('WithdrawalNodeItem') export class WithdrawalNodeItem extends Component { @property({ tooltip: "提现类型", type: Label }) private withdrawalType: Label; @property({ tooltip: "时间", type: Label }) private time: Label; @property({ tooltip: "提现金额", type: Label }) private withdrawalMoney: Label; @property({ tooltip: "余额", type: Label }) private money: Label; start() { // [3] } public setData() { } }