117 lines
2.3 KiB
Vue
117 lines
2.3 KiB
Vue
<template>
|
|
<view class="commVipInfo_content">
|
|
<view class="vip_info_box">
|
|
<view class="vip_info_box_left">
|
|
<view class="vip_info_sculpture">
|
|
<image class="is_image" src="/static/images/myInfo/default_sculpture.png" />
|
|
</view>
|
|
<view class="vip_whether_tips_box">
|
|
<view class="vip_whether_tips">
|
|
<view class="vip_whether_tips_test">
|
|
尊贵的VIP会员
|
|
</view>
|
|
<view class="vip_whether_tips_icon">
|
|
<image src="/static/images/myInfo/VIP_whether.png" class="is_image" />
|
|
</view>
|
|
</view>
|
|
<view class="vip_time_tips">尊享无限时书城免费畅读</view>
|
|
</view>
|
|
</view>
|
|
<view class="vip_info_box_right">
|
|
<view class="vip_info_renew">续费</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'commVipInfo',
|
|
data() {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.is_image {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.commVipInfo_content {
|
|
width: 100%;
|
|
|
|
.vip_info_box {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 142rpx;
|
|
padding: 0 40rpx;
|
|
background: url('/static/images/member_vip_bg.png') no-repeat;
|
|
background-size: 100% 100%;
|
|
box-sizing: border-box;
|
|
|
|
.vip_info_box_left {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.vip_info_sculpture {
|
|
width: 68rpx;
|
|
height: 68rpx;
|
|
margin-right: 16rpx;
|
|
}
|
|
|
|
.vip_whether_tips_box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-center: center;
|
|
|
|
.vip_whether_tips {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.vip_whether_tips_test {
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.vip_whether_tips_icon {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
margin-left: 8rpx;
|
|
}
|
|
}
|
|
|
|
.vip_time_tips {
|
|
font-size: 24rpx;
|
|
color: #fff;
|
|
line-height: 1;
|
|
margin-top: 16rpx;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.vip_info_box_right {
|
|
.vip_info_renew {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 0 30rpx;
|
|
border-radius: 34rpx;
|
|
height: 68rpx;
|
|
background-color: rgba(255, 255, 255, 0.65);
|
|
font-size: 28rpx;
|
|
color: #E0385B;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
</style> |