|
@@ -9,24 +9,19 @@ export default class ReceiptNotice extends cc.Component {
|
|
|
|
|
|
|
|
@property({ displayName: 'lbl收款金额', type: cc.Label })
|
|
@property({ displayName: 'lbl收款金额', type: cc.Label })
|
|
|
private lbl_receipt_rmb: cc.Label = null!;
|
|
private lbl_receipt_rmb: cc.Label = null!;
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
@property({ displayName: 'lbl累计提现', type: cc.Label })
|
|
@property({ displayName: 'lbl累计提现', type: cc.Label })
|
|
|
private lbl_rmb_total: cc.Label = null!;
|
|
private lbl_rmb_total: cc.Label = null!;
|
|
|
-
|
|
|
|
|
- @property({ displayName: 'lbl收款游戏', type: cc.Label })
|
|
|
|
|
- private lbl_game_name: cc.Label = null!;
|
|
|
|
|
@property({ displayName: 'lbl用户名', type: cc.Label })
|
|
@property({ displayName: 'lbl用户名', type: cc.Label })
|
|
|
private lbl_user_name: cc.Label = null!;
|
|
private lbl_user_name: cc.Label = null!;
|
|
|
|
|
|
|
|
|
|
|
|
|
- onLoad() {
|
|
|
|
|
|
|
+ // onLoad() {
|
|
|
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ // }
|
|
|
|
|
|
|
|
- start() {
|
|
|
|
|
|
|
+ // start() {
|
|
|
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ // }
|
|
|
|
|
|
|
|
update(dt) {
|
|
update(dt) {
|
|
|
if (gData.receiptNotice.init_style) {
|
|
if (gData.receiptNotice.init_style) {
|
|
@@ -42,6 +37,5 @@ export default class ReceiptNotice extends cc.Component {
|
|
|
this.lbl_receipt_rmb.string = '¥' + gData.receiptNotice.receip_rmb + '元';
|
|
this.lbl_receipt_rmb.string = '¥' + gData.receiptNotice.receip_rmb + '元';
|
|
|
this.lbl_rmb_total.string = '¥' + gData.receiptNotice.receip_total_rmb + '元';
|
|
this.lbl_rmb_total.string = '¥' + gData.receiptNotice.receip_total_rmb + '元';
|
|
|
this.lbl_user_name.string = '用户名';
|
|
this.lbl_user_name.string = '用户名';
|
|
|
- this.lbl_game_name.string = '轻松连连消提现';
|
|
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|