2024-09-02 17:13:16 +08:00
|
|
|
|
<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">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
<view class="card1" v-for="(item,index) in CouponLists" :key="index" v-show="(item.couponType==3||item.couponType==4)&&item.status==1">
|
2024-09-02 17:13:16 +08:00
|
|
|
|
<view class="tit1">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
{{item.couponName}}
|
2024-09-02 17:13:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="tit2">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
有效期至{{formatDate(item.expirationTime) }}
|
2024-09-02 17:13:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="txt3">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
剩余次数 <span>{{item.limitNum}}</span>
|
2024-09-02 17:13:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-09-05 18:00:43 +08:00
|
|
|
|
<view class="card2" v-for="(item,index) in CouponLists" :key="index" v-show="(item.couponType==3||item.couponType==4)&&item.status==3">
|
2024-09-02 17:13:16 +08:00
|
|
|
|
<view class="tit1">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
{{item.couponName}}
|
2024-09-02 17:13:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="tit2">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
有效期至{{formatDate(item.expirationTime) }}
|
2024-09-02 17:13:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="txt3">
|
|
|
|
|
<span style="font-size: 64rpx;">已过期</span>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-09-05 18:00:43 +08:00
|
|
|
|
<view class="card3" v-for="(item,index) in CouponLists" :key="index" v-show="item.couponType==2">
|
2024-09-02 17:13:16 +08:00
|
|
|
|
<view class="txt4">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
有效期至{{formatDate(item.expirationTime) }}
|
2024-09-02 17:13:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-09-05 18:00:43 +08:00
|
|
|
|
<view class="card4" v-for="(item,index) in CouponLists" :key="index" v-show="item.couponType==1">
|
2024-09-02 17:13:16 +08:00
|
|
|
|
<view class="txt4">
|
2024-09-05 18:00:43 +08:00
|
|
|
|
有效期至{{formatDate(item.expirationTime) }}
|
2024-09-02 17:13:16 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
bgc: {
|
|
|
|
|
backgroundColor: '#fff'
|
|
|
|
|
},
|
|
|
|
|
sn: '',
|
2024-09-04 18:09:51 +08:00
|
|
|
|
istrue: false,
|
|
|
|
|
CouponLists:[]
|
2024-09-02 17:13:16 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2024-09-04 18:09:51 +08:00
|
|
|
|
onShow() {
|
|
|
|
|
this.getinfo()
|
|
|
|
|
},
|
2024-09-02 17:13:16 +08:00
|
|
|
|
methods: {
|
2024-09-04 18:09:51 +08:00
|
|
|
|
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 {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-09-05 18:00:43 +08:00
|
|
|
|
formatDate(dateString) {
|
|
|
|
|
if (!dateString) return '';
|
|
|
|
|
const date = new Date(dateString);
|
|
|
|
|
const year = date.getFullYear();
|
|
|
|
|
const month = (date.getMonth() + 1).toString().padStart(2, '0'); // 月份从0开始,需要加1
|
|
|
|
|
const day = date.getDate().toString().padStart(2, '0');
|
|
|
|
|
return `${year}-${month}-${day}`;
|
|
|
|
|
},
|
2024-09-04 18:09:51 +08:00
|
|
|
|
getcard(){
|
|
|
|
|
let data={
|
|
|
|
|
userId:this.userinfo.userId
|
|
|
|
|
}
|
|
|
|
|
this.$u.get("/appVerify/getCouponListByUserId?",data ).then((res) => {
|
|
|
|
|
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.CouponLists = res.data
|
|
|
|
|
|
2024-09-05 18:00:43 +08:00
|
|
|
|
} else {
|
2024-09-04 18:09:51 +08:00
|
|
|
|
// uni.showToast({
|
|
|
|
|
// title: res.msg,
|
|
|
|
|
// icon: 'none',
|
|
|
|
|
// duration: 2000
|
|
|
|
|
// });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2024-09-02 17:13:16 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</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>
|