修复热恋bug

This commit is contained in:
dragon
2024-05-16 17:28:37 +08:00
parent 4f57268711
commit ae4a154f4e
6 changed files with 13 additions and 10 deletions

View File

@@ -158,6 +158,7 @@ body {
background: url(../images/dayLimit.png) no-repeat;
background-size: 100% 100%;
text-indent: 0.05rem;
white-space: nowrap;
}
.page1 .page1Box4 .dayLimit1 {

View File

@@ -165,6 +165,7 @@ body {
background: url(../images/dayLimit.png) no-repeat;
background-size: 100% 100%;
text-indent: 0.05rem;
white-space: nowrap;
}
.dayLimit1 {
@@ -613,7 +614,8 @@ body {
display: block;
width: 100%;
}
.img2{
.img2 {
display: none;
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 393 KiB

After

Width:  |  Height:  |  Size: 442 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 559 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 632 KiB

After

Width:  |  Height:  |  Size: 594 KiB

View File

@@ -1114,22 +1114,22 @@ function bodyScroolFun(bool) {
}
function rewardTypeFun(type) {
if (type == "HEADWEAR") {
return { name: "头饰", unit: '天' };
return { name: "頭飾", unit: '天' };
} else if (type == "NAMEPLATE") {
return { name: "牌", unit: '天' };
return { name: "牌", unit: '天' };
} else if (type == "CHATBUBBLE") {
return { name: "泡", unit: '天' };
return { name: "泡", unit: '天' };
} else if (type == "INFOCARD") {
return { name: "料卡", unit: '天' };
return { name: "料卡", unit: '天' };
} else if (type == "CAR") {
return { name: "座", unit: '天' };
return { name: "座", unit: '天' };
} else if (type == "GIFT") {
return { name: "物", unit: '' };
return { name: "物", unit: '' };
} else if (type == "DIAMOND") {
return { name: "石", unit: '' };
return { name: "石", unit: '' };
} else if (type == "GOLD") {
return { name: "金", unit: '' };
return { name: "金", unit: '' };
} else if (type == "EMPTY") {
return { name: nick, unit: '' };
return { name: nick, unit: '' };
}
}