This commit is contained in:
kbing1981 2024-08-29 15:08:11 +08:00
parent 2a408b2706
commit 2a74d067db
1 changed files with 16 additions and 12 deletions

View File

@ -41,15 +41,13 @@
<view v-else> <view v-else>
备注: 本期等级是根据技师上个周期的业绩最终计算得出 备注: 本期等级是根据技师上个周期的业绩最终计算得出
</view> --> </view> -->
<view v-if="grade"> <view v-if="grade" class="dengji-text">
本周期到达等级{{grade}} 本周期到达等级{{grade}}
</view> </view>
<u-line-progress active-color="#46a396" :show-percent="false" :height="38" inactive-color="#098f7a" <u-line-progress active-color="#9dd47a" :show-percent="false" :height="15" inactive-color="#098f7a"
:percent="lineProgressData" :striped-active="true"></u-line-progress> :percent="lineProgressData" :striped-active="true"></u-line-progress>
<view v-if="!maxStatus && longUpgradeDescriptionSet.differenceOutstandingAchievement" class="dengji-text"> <view v-if="!maxStatus && longUpgradeDescriptionSet.differenceOutstandingAchievement" class="dengji-text">
还差{{ longUpgradeDescriptionSet.differenceDurationOnline }}小时{{ longUpgradeDescriptionSet.differenceOutstandingAchievement }}业绩{{ longUpgradeDescriptionSet.differenceIntegral }}积分;可以升级{{ longUpgradeDescriptionSet.differenceGrade }} 还差<span class="memo">{{ longUpgradeDescriptionSet.differenceDurationOnline }}</span>小时<span class="memo">{{ longUpgradeDescriptionSet.differenceOutstandingAchievement }}</span>业绩<span class="memo">{{ longUpgradeDescriptionSet.differenceIntegral }}</span>积分;可以升级<span class="memo">{{ longUpgradeDescriptionSet.differenceGrade }}</span>
</view> </view>
<view v-if="maxStatus" class=" dengji-text"> <view v-if="maxStatus" class=" dengji-text">
您已达到最高等级 您已达到最高等级
@ -286,12 +284,13 @@
position: relative; position: relative;
} }
.mian-view{ .mian-view{
width: 90%; width:100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: absolute; position: absolute;
top: 0; top: 0;
margin-top: 160px; margin-top: 140px;
background: #fff;
} }
.djimg-text{ .djimg-text{
font-size: 23rpx; font-size: 23rpx;
@ -325,6 +324,7 @@
margin-right: 6px; margin-right: 6px;
} }
.header-right-text{ .header-right-text{
width: 100%;
margin-top: 25px; margin-top: 25px;
font-size: 26rpx; font-size: 26rpx;
color: #FFFFFF; color: #FFFFFF;
@ -404,15 +404,14 @@
} }
.content{ .content{
width: 100%; width: 100%;
height: 100vh; /* height: 100vh;
background-image: url('../../static/index/swim.jpg'); background:#f7f7f7;*/
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100%; background-size: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
padding-bottom: 30px; }
}
.be-remarks{ .be-remarks{
border: 1px dashed #FE912E; border: 1px dashed #FE912E;
padding: 10rpx 20rpx; padding: 10rpx 20rpx;
@ -431,7 +430,12 @@
width: 100%; width: 100%;
} }
.memo{ .memo{
font-size: 24rpx;
color: #ffe35d;
padding: 0 6rpx;
}
.dengji-text{
font-size: 22rpx; font-size: 22rpx;
color: #c1e7e1;
} }
</style> </style>