Compare commits

...

3 Commits

Author SHA1 Message Date
TJH
4c32b9f6bd 历史记录显示逻辑修改
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m15s
2025-12-30 14:54:44 +08:00
TJH
dd333d4c59 no message 2025-12-30 14:09:25 +08:00
TJH
b05312de5f 1 2025-12-30 14:09:05 +08:00
3 changed files with 2342 additions and 2251 deletions

File diff suppressed because it is too large Load Diff

View File

@ -105,7 +105,7 @@ export class SlotGame extends Component {
this.grayNode = this.node.getChildByName('grayNode');
this.winLayer = this.node.getChildByName('winLayer');
this.readyHand = this.node.getChildByName('readyHand');
this.scatterLayer = this.node.getChildByPath('scatterLayer/layer')
this.scatterLayer = this.node.getChildByPath('scatterLayer')
this.winType = this.node.getChildByName('winType');

View File

@ -236,7 +236,7 @@ export class HistoryDetail extends Component {
info.getChildByName("Label_Bet").getComponent(Label).string = getTranslate(this.dict, "Bet") + `(${currencySymbol})`;
info.getChildByName("txt_profit").getComponent(Label).string = fixNum(pan.WinInfo ? pan.WinInfo.Score : 0);
info.getChildByName("txt_profit").getComponent(Label).string = fixNum(pan.Profit);
info.getChildByName("Label_Profit").getComponent(Label).string = getTranslate(this.dict, "Profit") + `(${currencySymbol})`;
info.getChildByName("txt_balance_before").getComponent(Label).string = fixNum(pan.Balance - pan.AllScore + pan.Bet) + "➡️";