diff --git a/Application/Mobile/View/Ssg/login.html b/Application/Mobile/View/Ssg/login.html index e1b539433..645cc3b28 100644 --- a/Application/Mobile/View/Ssg/login.html +++ b/Application/Mobile/View/Ssg/login.html @@ -417,7 +417,12 @@ var PhoneObj = { //弹框确认 function hideAndLogin(){ $("#alert_box").hide(); - window.location.href = "mobile.php?s=/Ssg/index.html" + var gameId = $("#game_id").val(); + if (gameId) { + window.location.href = "/mobile.php?s=/Ssg/pay/game_id/"+gameId+".html" + } else { + window.location.href = "mobile.php?s=/Ssg/index.html" + } } //获取手机验证码 $("#getPhoneCode").on("click",function(){ diff --git a/Public/Home/css/index2.css b/Public/Home/css/index2.css index 7f6dcc55a..4a9e755dc 100644 --- a/Public/Home/css/index2.css +++ b/Public/Home/css/index2.css @@ -11,9 +11,10 @@ align-items: center; justify-content: space-between; } -.heard>img{ +.heard>div>img{ width: 2.5rem; height: 2.5rem; + border-radius: 0.3rem; } .heard>.right{ margin-left: 0.3rem; @@ -70,11 +71,21 @@ .evaluate .start{ display: flex; align-items: center; - margin-left: 0.32rem; + margin-left: 0.22rem; } -.evaluate .start>img{ - width: 0.3rem; +.evaluate .start .iconImg{ + display: inline-block; + vertical-align: middle; + width: 1.95rem; height: 0.3rem; + background: url("../images/game_score1.png")no-repeat left center; + background-size: auto 100%; +} +.evaluate .start .iconImg>div{ + display: block; + height: 100%; + background: url("../images/game_score2.png")no-repeat left center; + background-size: auto 100%; } .evaluate-box{ display: flex; @@ -443,4 +454,5 @@ } .swiper-container-horizontal>.swiper-pagination-bullets{ bottom: -9px !important; -} \ No newline at end of file +} + diff --git a/Public/Home/images/game_score1.png b/Public/Home/images/game_score1.png new file mode 100644 index 000000000..83cfd5f45 Binary files /dev/null and b/Public/Home/images/game_score1.png differ diff --git a/Public/Home/images/game_score2.png b/Public/Home/images/game_score2.png new file mode 100644 index 000000000..aefd6805a Binary files /dev/null and b/Public/Home/images/game_score2.png differ