diff --git a/view/yinmeng/activity/2024-cityLove/css/index.css b/view/yinmeng/activity/2024-cityLove/css/index.css index f22480c..ead4ab2 100644 --- a/view/yinmeng/activity/2024-cityLove/css/index.css +++ b/view/yinmeng/activity/2024-cityLove/css/index.css @@ -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 { diff --git a/view/yinmeng/activity/2024-cityLove/css/index.scss b/view/yinmeng/activity/2024-cityLove/css/index.scss index 84e4ef5..0587b7b 100644 --- a/view/yinmeng/activity/2024-cityLove/css/index.scss +++ b/view/yinmeng/activity/2024-cityLove/css/index.scss @@ -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; } } diff --git a/view/yinmeng/activity/2024-cityLove/images/page1Box4.png b/view/yinmeng/activity/2024-cityLove/images/page1Box4.png index 05cc67b..4153dc7 100644 Binary files a/view/yinmeng/activity/2024-cityLove/images/page1Box4.png and b/view/yinmeng/activity/2024-cityLove/images/page1Box4.png differ diff --git a/view/yinmeng/activity/2024-cityLove/images/page2.png b/view/yinmeng/activity/2024-cityLove/images/page2.png index 418217e..51a7c34 100644 Binary files a/view/yinmeng/activity/2024-cityLove/images/page2.png and b/view/yinmeng/activity/2024-cityLove/images/page2.png differ diff --git a/view/yinmeng/activity/2024-cityLove/images/rule1.png b/view/yinmeng/activity/2024-cityLove/images/rule1.png index eadc69c..7062e01 100644 Binary files a/view/yinmeng/activity/2024-cityLove/images/rule1.png and b/view/yinmeng/activity/2024-cityLove/images/rule1.png differ diff --git a/view/yinmeng/activity/2024-cityLove/images/rule2.png b/view/yinmeng/activity/2024-cityLove/images/rule2.png index 2589e18..990c705 100644 Binary files a/view/yinmeng/activity/2024-cityLove/images/rule2.png and b/view/yinmeng/activity/2024-cityLove/images/rule2.png differ diff --git a/view/yinmeng/common/js/common2.js b/view/yinmeng/common/js/common2.js index e1a8bfc..c8a58f2 100644 --- a/view/yinmeng/common/js/common2.js +++ b/view/yinmeng/common/js/common2.js @@ -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: '个' }; + } } \ No newline at end of file