Files
18xchat/assets/Scripts/chat18x/ui/panels/PayToTalkSubpanel.ts
T

33 lines
597 B
TypeScript
Raw Normal View History

2025-08-25 20:15:42 +08:00
import { _decorator, Component, Label, Node } from "cc";
const { ccclass, property } = _decorator;
@ccclass("PayToTalkSubpanel")
export class PayToTalkSubpanel extends Component {
@property(Label)
timeLabel: Label = null;
@property(Label)
timeBtnLabel: Label = null;
@property(Label)
vipLabel: Label = null;
@property(Label)
vipBtnLabel: Label = null;
show() {}
refresh() {}
onClick_BuyTime() {
//购买次数
console.log("购买聊天次数,未实现功能");
}
onClick_BuyVip() {
//购买VIP
console.log("购买vip,未实现功能");
}
}