bike/page_vip/Vip_index.vue

195 lines
3.8 KiB
Vue
Raw Normal View History

2024-08-06 17:15:17 +08:00
<template>
<view class="page">
2024-08-15 18:02:32 +08:00
<u-navbar title="我的骑行卡" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='45'></u-navbar>
<view class="cont">
<view class="card1">
<view class="tit1">
电单车15天5次卡
</view>
<view class="tit2">
有效期至2024-08-04
</view>
<view class="txt3">
2024-08-16 18:05:31 +08:00
剩余次数 <span>5</span>
2024-08-15 18:02:32 +08:00
</view>
</view>
<view class="card2">
2024-08-16 18:05:31 +08:00
<view class="tit1">
电单车15天5次卡
</view>
<view class="tit2">
有效期至2024-08-04
</view>
<view class="txt3">
<span style="font-size: 64rpx;">已过期</span>
</view>
2024-08-15 18:02:32 +08:00
</view>
<view class="card3">
2024-08-16 18:05:31 +08:00
<view class="txt4">
有效期至2024-08-28
</view>
2024-08-15 18:02:32 +08:00
</view>
<view class="card4">
2024-08-16 18:05:31 +08:00
<view class="txt4">
有效期至2024-08-28
</view>
2024-08-15 18:02:32 +08:00
</view>
</view>
2024-08-06 17:15:17 +08:00
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: '#fff'
},
2024-08-15 18:02:32 +08:00
sn: '',
istrue: false
2024-08-06 17:15:17 +08:00
}
},
2024-08-15 18:02:32 +08:00
2024-08-06 17:15:17 +08:00
methods: {
2024-08-15 18:02:32 +08:00
2024-08-06 17:15:17 +08:00
}
}
</script>
2024-08-15 18:02:32 +08:00
<style lang="scss">
page {
background-color: #fff;
}
.page {
width: 750rpx;
.cont {
display: flex;
justify-content: center;
flex-wrap: wrap;
2024-08-16 18:05:31 +08:00
.tit1 {
2024-08-15 18:02:32 +08:00
font-weight: 500;
font-size: 32rpx;
color: #FFFFFF;
}
2024-08-16 18:05:31 +08:00
.tit2 {
2024-08-15 18:02:32 +08:00
margin-top: 10rpx;
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
}
2024-08-16 18:05:31 +08:00
2024-08-15 18:02:32 +08:00
.card1 {
position: relative;
margin-top: 18rpx;
width: 680rpx;
height: 176rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/uTKFB3So9QZGTuttNGD0');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
2024-08-16 18:05:31 +08:00
padding: 22rpx 46rpx;
.txt3 {
2024-08-15 18:02:32 +08:00
position: absolute;
2024-08-16 18:05:31 +08:00
right: 42rpx;
bottom: 16rpx;
font-weight: 400;
font-size: 28rpx;
color: #FFFFFF;
span {
margin-left: 26rpx;
font-size: 100rpx;
}
2024-08-15 18:02:32 +08:00
}
2024-08-16 18:05:31 +08:00
2024-08-15 18:02:32 +08:00
/* 防止背景图片重复 */
}
2024-08-16 18:05:31 +08:00
2024-08-15 18:02:32 +08:00
.card2 {
2024-08-16 18:05:31 +08:00
position: relative;
padding: 22rpx 46rpx;
2024-08-15 18:02:32 +08:00
margin-top: 18rpx;
width: 680rpx;
height: 176rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/uhYH4FVnYOsjGK2iky8X');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
2024-08-16 18:05:31 +08:00
2024-08-15 18:02:32 +08:00
/* 防止背景图片重复 */
2024-08-16 18:05:31 +08:00
.txt3 {
position: absolute;
right: 42rpx;
bottom: 16rpx;
font-weight: 400;
font-size: 28rpx;
color: #FFFFFF;
span {
margin-left: 26rpx;
font-size: 100rpx;
}
}
2024-08-15 18:02:32 +08:00
}
2024-08-16 18:05:31 +08:00
2024-08-15 18:02:32 +08:00
.card3 {
2024-08-16 18:05:31 +08:00
position: relative;
2024-08-15 18:02:32 +08:00
margin-top: 18rpx;
width: 680rpx;
height: 410rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/uZCTchd4XbAwsmNDuGun');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
/* 防止背景图片重复 */
2024-08-16 18:05:31 +08:00
.txt4{
position: absolute;
top: 72rpx;
right: 78rpx;
font-weight: 400;
font-size: 24rpx;
color: #F5C164;
}
2024-08-15 18:02:32 +08:00
}
2024-08-16 18:05:31 +08:00
2024-08-15 18:02:32 +08:00
.card4 {
2024-08-16 18:05:31 +08:00
position: relative;
2024-08-15 18:02:32 +08:00
margin-top: 18rpx;
width: 680rpx;
height: 410rpx;
background-image: url('https://lxnapi.ccttiot.com/bike/img/static/uiT97zPTbkZOMkGGmsAc');
background-size: cover;
/* 背景图片等比缩放以覆盖整个容器 */
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
/* 防止背景图片重复 */
2024-08-16 18:05:31 +08:00
.txt4{
position: absolute;
top: 72rpx;
right: 78rpx;
font-weight: 400;
font-size: 24rpx;
color: #BBB7B7 ;
}
2024-08-15 18:02:32 +08:00
}
}
}
</style>