bike/page_vip/myVip_index.vue
2024-09-04 18:09:51 +08:00

231 lines
4.5 KiB
Vue

<template>
<view class="page">
<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">
剩余次数 <span>5</span>
</view>
</view>
<view class="card2">
<view class="tit1">
电单车15天5次卡
</view>
<view class="tit2">
有效期至2024-08-04
</view>
<view class="txt3">
<span style="font-size: 64rpx;">已过期</span>
</view>
</view>
<view class="card3">
<view class="txt4">
有效期至2024-08-28
</view>
</view>
<view class="card4">
<view class="txt4">
有效期至2024-08-28
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: '#fff'
},
sn: '',
istrue: false,
CouponLists:[]
}
},
onShow() {
this.getinfo()
},
methods: {
getinfo() {
// uni.showLoading({
// title:'加载中'
// })
this.$u.get("/getAppInfo").then((res) => {
if (res.code == 200) {
this.$store.commit('SET_USERID', res.user.userId);
this.userinfo = res.user
this.getcard()
} else {
}
});
},
getcard(){
let data={
userId:this.userinfo.userId
}
this.$u.get("/appVerify/getCouponListByUserId?",data ).then((res) => {
if (res.code == 200) {
this.CouponLists = res.data
} else {
// uni.showToast({
// title: res.msg,
// icon: 'none',
// duration: 2000
// });
}
});
}
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.page {
width: 750rpx;
.cont {
display: flex;
justify-content: center;
flex-wrap: wrap;
.tit1 {
font-weight: 500;
font-size: 32rpx;
color: #FFFFFF;
}
.tit2 {
margin-top: 10rpx;
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
}
.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;
padding: 22rpx 46rpx;
.txt3 {
position: absolute;
right: 42rpx;
bottom: 16rpx;
font-weight: 400;
font-size: 28rpx;
color: #FFFFFF;
span {
margin-left: 26rpx;
font-size: 100rpx;
}
}
/* 防止背景图片重复 */
}
.card2 {
position: relative;
padding: 22rpx 46rpx;
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;
/* 防止背景图片重复 */
.txt3 {
position: absolute;
right: 42rpx;
bottom: 16rpx;
font-weight: 400;
font-size: 28rpx;
color: #FFFFFF;
span {
margin-left: 26rpx;
font-size: 100rpx;
}
}
}
.card3 {
position: relative;
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;
/* 防止背景图片重复 */
.txt4{
position: absolute;
top: 72rpx;
right: 78rpx;
font-weight: 400;
font-size: 24rpx;
color: #F5C164;
}
}
.card4 {
position: relative;
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;
/* 防止背景图片重复 */
.txt4{
position: absolute;
top: 72rpx;
right: 78rpx;
font-weight: 400;
font-size: 24rpx;
color: #BBB7B7 ;
}
}
}
}
</style>