修复热恋活动bug

This commit is contained in:
dragon
2024-05-16 17:27:29 +08:00
parent 14db22d7e6
commit fec9ac7a45
7 changed files with 25 additions and 1 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: 413 KiB

After

Width:  |  Height:  |  Size: 421 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 554 KiB

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 505 KiB

After

Width:  |  Height:  |  Size: 517 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 604 KiB

After

Width:  |  Height:  |  Size: 615 KiB

View File

@@ -673,4 +673,25 @@ function networkRequest (reqObj = {}, type) {
const response = $.ajax(reqObj);
return response;
}
function rewardTypeFun(type) {
if (type == "HEADWEAR") {
return { name: "头饰", unit: '天' };
} else if (type == "NAMEPLATE") {
return { name: "铭牌", unit: '天' };
} else if (type == "CHATBUBBLE") {
return { name: "气泡", unit: '天' };
} else if (type == "INFOCARD") {
return { name: "资料卡", unit: '天' };
} else if (type == "CAR") {
return { name: "座驾", unit: '天' };
} else if (type == "GIFT") {
return { name: "礼物", unit: '个' };
} else if (type == "DIAMOND") {
return { name: "钻石", unit: '个' };
} else if (type == "GOLD") {
return { name: "金币", unit: '个' };
} else if (type == "EMPTY") {
return { name: nick, unit: '个' };
}
}