This commit is contained in:
zhangmanman
2021-09-29 17:53:31 +08:00
parent c0ef649ff5
commit 73178c6ea3
131 changed files with 57183 additions and 10 deletions

View File

@@ -38,12 +38,16 @@
<view class="sign-record">再签到{{ sign.nextTask.day }}天额外赠送{{ sign.nextTask.diff }}个能量碎片</view>
</view>
<view class="signBtn">
<view class="signBtn-go" v-if="sign.signCan" @click="signClick" style="cursor:pointer" >
签到领取能量碎片
</view>
<view class="signBtn-go" v-else @click="$Router.push({name:'Fragment'})">
能量碎片记录<image class="signBtn-go-icon" src="/static/user/sign_arrow.png" mode="aspectFill"></image>
</view>
<block v-if="sign.signCan">
<view class="signBtn-go" @tap="signClick" style="cursor:pointer" >
签到领取能量碎片
</view>
</block>
<block v-else>
<view class="signBtn-go" @click="$Router.push({name:'Fragment'})">
能量碎片记录<image class="signBtn-go-icon" src="/static/user/sign_arrow.png" mode="aspectFill"></image>
</view>
</block>
</view>
<!-- 水晶任务 -->
<view class="task">
@@ -323,6 +327,7 @@
z-index: 2;
.signBtn-go {
width: 100%;
height: 100rpx;
line-height: 100rpx;
border-radius: 80rpx;
background-color: #f9dc4a;

View File

@@ -479,8 +479,8 @@
position: fixed;
background-color: $uni-bg-color;
border-radius: $radius;
left: 60rpx;
right: 60rpx;
left: 80rpx;
right: 80rpx;
top: 30%;
z-index: 1002;
font-size: $uni-font-size-sm;
@@ -494,11 +494,11 @@
font-weight: 600;
}
.newCont-text {
padding: 0 40rpx;
padding: 50rpx 40rpx;
box-sizing: border-box;
line-height: 48rpx;
text-align: justify;
height: 260rpx;
max-height: 400rpx;
overflow: hidden;
overflow-y: scroll;
}