|
@@ -17,6 +17,12 @@
|
|
|
|
|
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+ <view class="attachment-open">
|
|
|
|
|
+ <view class="open-data sys-background-yellow sys-radius-200">
|
|
|
|
|
+ <image class="open-img" src="/static/img/common/lock.png" mode="aspectFill"></image>
|
|
|
|
|
+ <view class="open-text sys-color-black sys-weight-500" >立即解锁</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
@@ -75,6 +81,7 @@ export default {
|
|
|
flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
|
}
|
|
}
|
|
|
.attachment-item{
|
|
.attachment-item{
|
|
|
|
|
+ border-radius: 20rpx;
|
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
margin-right:18rpx;
|
|
margin-right:18rpx;
|
|
|
width: calc((100vw - 82rpx)/2);
|
|
width: calc((100vw - 82rpx)/2);
|
|
@@ -106,6 +113,34 @@ export default {
|
|
|
.attachment-item:nth-of-type(n+3){
|
|
.attachment-item:nth-of-type(n+3){
|
|
|
margin-top:18rpx;
|
|
margin-top:18rpx;
|
|
|
}
|
|
}
|
|
|
|
|
+ .attachment-open{
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ bottom: 0;
|
|
|
|
|
+ width: 100vw;
|
|
|
|
|
+ height: 190rpx;
|
|
|
|
|
+ background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
|
|
|
|
|
+ padding: 70rpx 80rpx 30rpx 80rpx;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+ .open-data{
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ height: 88rpx;
|
|
|
|
|
+ padding: 22rpx 0;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+ .open-img{
|
|
|
|
|
+ width: 32rpx;
|
|
|
|
|
+ height: 32rpx;
|
|
|
|
|
+ margin-right: 8rpx;
|
|
|
|
|
+ margin-top: 6rpx;
|
|
|
|
|
+ }
|
|
|
|
|
+ .open-text{
|
|
|
|
|
+ font-size: 32rpx;
|
|
|
|
|
+ //height: 44rpx;
|
|
|
|
|
+ //line-height: 44rpx;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|