修复热恋活动bug
@@ -158,6 +158,7 @@ body {
|
|||||||
background: url(../images/dayLimit.png) no-repeat;
|
background: url(../images/dayLimit.png) no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
text-indent: 0.05rem;
|
text-indent: 0.05rem;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page1 .page1Box4 .dayLimit1 {
|
.page1 .page1Box4 .dayLimit1 {
|
||||||
|
@@ -165,6 +165,7 @@ body {
|
|||||||
background: url(../images/dayLimit.png) no-repeat;
|
background: url(../images/dayLimit.png) no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
text-indent: 0.05rem;
|
text-indent: 0.05rem;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dayLimit1 {
|
.dayLimit1 {
|
||||||
@@ -613,7 +614,8 @@ body {
|
|||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.img2{
|
|
||||||
|
.img2 {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 413 KiB After Width: | Height: | Size: 421 KiB |
Before Width: | Height: | Size: 554 KiB After Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 505 KiB After Width: | Height: | Size: 517 KiB |
Before Width: | Height: | Size: 604 KiB After Width: | Height: | Size: 615 KiB |
@@ -674,3 +674,24 @@ function networkRequest (reqObj = {}, type) {
|
|||||||
const response = $.ajax(reqObj);
|
const response = $.ajax(reqObj);
|
||||||
return response;
|
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: '个' };
|
||||||
|
}
|
||||||
|
}
|