已知问题修改

This commit is contained in:
TJH 2025-12-25 15:25:44 +08:00
parent 061af3f7b1
commit 04c603b294
4 changed files with 8 additions and 6 deletions

View File

@ -14219,7 +14219,7 @@
"_lpos": { "_lpos": {
"__type__": "cc.Vec3", "__type__": "cc.Vec3",
"x": 540, "x": 540,
"y": -882, "y": -880,
"z": 0 "z": 0
}, },
"_lrot": { "_lrot": {
@ -14396,7 +14396,7 @@
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 12, "width": 12,
"height": 1764 "height": 1760
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",

View File

@ -28,7 +28,7 @@ export class FreeSpinAdd extends Component {
this.freeSpinEnterTitleSp = titleNode.getChildByName('SpriteFREESPINWON').getComponent(Sprite); this.freeSpinEnterTitleSp = titleNode.getChildByName('SpriteFREESPINWON').getComponent(Sprite);
this.freeCount = freeCount; this.freeCount = freeCount;
this.freeCountLabel.string = `${freeCount}`; this.freeCountLabel.string = `+ ${freeCount}`;
this.node.addChild(this.freeSpinAddUI); this.node.addChild(this.freeSpinAddUI);
this.playAnimation(); this.playAnimation();
this.closeCallBack = closeCallBack; this.closeCallBack = closeCallBack;

View File

@ -103,9 +103,11 @@ export class HistoryDetail extends Component {
const content = this.list_round_winning.content const content = this.list_round_winning.content
content.destroyAllChildren() content.destroyAllChildren()
const currencySymbol = this.data.currencySymbol const currencySymbol = this.data.currencySymbol
const yellowColor = new Color(0xFF, 0xAE, 0x00) const yellowColor = new Color(0xFF, 0xAE, 0x00)
const closeLabel = this.list_round_winning.node.getChildByPath('btn_close/Label').getComponent(Label)
closeLabel.string = getTranslate(this.dict, "Close")
scoreInfos.forEach((v, i) => { scoreInfos.forEach((v, i) => {
const item = instantiate(this.item_round_winning) const item = instantiate(this.item_round_winning)
const txt_round = item.getChildByName("txt_round").getComponent(Label) const txt_round = item.getChildByName("txt_round").getComponent(Label)
@ -165,7 +167,7 @@ export class HistoryDetail extends Component {
if (findIndex == 0) { if (findIndex == 0) {
txt_spin.string = getTranslate(this.dict, "Normal Spin") txt_spin.string = getTranslate(this.dict, "Normal Spin")
} else { } else {
txt_spin.string = getTranslate(this.dict, "Free Spin:") + `${findIndex}/${maxIdx}` txt_spin.string = getTranslate(this.dict, "Free Spin") + `${findIndex}/${maxIdx}`
} }
const yellowColor = new Color(0xFF, 0xAE, 0x00) const yellowColor = new Color(0xFF, 0xAE, 0x00)

View File

@ -32,7 +32,7 @@ export function getHistoryUrl() {
} }
export function getLanguage() { export function getLanguage() {
// return 'zh'; return 'zh';
return language; return language;
} }