修复异常bug

This commit is contained in:
dragon
2024-09-24 19:09:40 +08:00
parent 887e2516ef
commit e66fbe2d0a
8 changed files with 26 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ body {
height: 17.78667rem;
background: #F5F7F9;
box-sizing: border-box;
padding: 1.73333rem 0rem 0 0;
padding: 2.13333rem 0rem 0 0;
}
.back {

View File

@@ -8,7 +8,7 @@ body {
height: px2rem(1334);
background: #F5F7F9;
box-sizing: border-box;
padding: px2rem(130) px2rem(0) 0 0;
padding: px2rem(160) px2rem(0) 0 0;
}
.back {

View File

@@ -144,6 +144,10 @@ body {
width: 33%;
}
.titleInfoAct {
padding: 0;
}
.userInfo {
width: 9.14667rem;
margin: 0 auto 1.6rem;

View File

@@ -147,6 +147,9 @@ body {
width: 33%;
}
}
.titleInfoAct{
padding: 0;
}
.userInfo {
width: px2rem(686);

View File

@@ -165,13 +165,14 @@ body {
display: inline-block;
width: 0.69333rem;
height: 0.69333rem;
margin-top: 0.4rem;
vertical-align: middle;
}
.headerBox .headerBox_in div span {
display: inline-block;
color: #313131;
font-size: 0.4rem;
vertical-align: middle;
}
.headerBox .headerBox_in .incomeStatistics {
@@ -446,7 +447,7 @@ body {
.guildList ul li .but {
width: 1.17333rem;
height: 0.56rem;
background: #62D0A8;
background: #CDCED6;
border-radius: 0.56rem;
position: absolute;
right: 0.34667rem;

View File

@@ -169,13 +169,15 @@ body {
display: inline-block;
width: px2rem(52);
height: px2rem(52);
margin-top: px2rem(30);
// margin-top: px2rem(30);
vertical-align: middle;
}
span {
display: inline-block;
color: #313131;
font-size: px2rem(30);
vertical-align: middle;
}
}
.incomeStatistics{
@@ -457,7 +459,7 @@ body {
.but {
width: px2rem(88);
height: px2rem(42);
background: #62D0A8;
background: #CDCED6;
border-radius: px2rem(42);
position: absolute;
right: px2rem(26);

View File

@@ -148,9 +148,11 @@ $('.tab div').click(function () {
$('.dayDate,.userInfo').hide();
$('.income .gold b').text(totalGoldIncome[index - 1]);
if (index == 1) {
$('.titleInfo').removeClass('titleInfoAct');
$('.titleInfo div').eq(0).text(langReplace(localLang.incomeStatistics.text5));
$('.dayDate').show();
} else {
$('.titleInfo').addClass('titleInfoAct');
$('.titleInfo div').eq(0).text(langReplace(localLang.incomeStatistics.text9));
$('.userInfo').show();
}

View File

@@ -93,22 +93,22 @@ function guildFun(type) {
if (type == 1) {
$('.guildList .top img').show()
$('.guildList .top input').show()
$('.header .headerBox .myWages').hide()
$('.headerBox .myWages').hide()
}
// 管理员
else if (type == 2) {
$('.header .headerBox .guildInfoSet').hide();
$('.header .headerBox .adminSet').hide();
$('.headerBox .guildInfoSet').hide();
$('.headerBox .adminSet').hide();
$('.guildList .top input').show()
$('.memberFlow2').hide()
}
// 普通成员
else if (type == 3) {
$('.header .headerBox .guildInfoSet').hide();
$('.header .headerBox .adminSet').hide();
$('.header .headerBox .memberFlow').hide();
$('.header .memberFlowMy').show()
$('.header .guildNick').show()
$('.headerBox .guildInfoSet').hide();
$('.headerBox .adminSet').hide();
$('.headerBox .memberFlow').hide();
$('.memberFlowMy').show()
$('.guildNick').show()
$('.guildList .top input').show()
$('.memberFlow2').hide();