智慧教务系统UniApp前端项目(使用中2025-0517)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

181 lines
3.5 KiB

<template>
<view class="coupon-item">
<view class="coupon-money">
<view class="nick" v-if="!types">{{item.full}}使用</view>
<view class="layof" :style="{color:theme}">{{item.reduce}}</view>
<view class="end_time">{{item.end_time}}前使用</view>
<view v-if="!types">
<!-- <view class="tit">券号{{item.ticket}}</view> -->
<view class="demand">{{item.coupon.name}}</view>
</view>
</view>
<!-- <view class="get-btn" v-if="types" :style="{color:color, borderColor:color, background:solid}">选择使用</view> -->
<button @tap="jump" class="get-btn" v-if="item.status == 0" :style="{color:color, borderColor:color, background:solid}">立即使用</button>
<image v-else-if="item.status == 1" class="img" src="../../static/icon-img/used.png" mode=""></image>
<image v-else-if="item.status == 3" class="img" src="../../static/icon-img/guoqi.png" mode=""></image>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
}
},
mounted() {
},
props: {
item: {
type: Object
},
types: {
type: String,
default: ''
},
theme: {
type: String,
default: '#ff9000'
},
solid: {
type: String,
default: '#ffffff'
},
color: {
type: String,
default: '#ff9000'
},
},
methods: {
jump() {
uni.switchTab({
url: '../../pages/index/index'
})
}
}
}
</script>
<style lang='scss'>
.coupon-item {
width: 100%;
height: auto;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10upx;
padding: 0 20upx;
margin-top: 22upx;
border: 1px solid #eeeeee;
position: relative;
background: linear-gradient(to bottom right, transparent, #DBA871);
.coupon-money {
width: 465upx;
height: auto;
display: table;
float: left;
padding: 26upx 0;
border-style: none dotted none none;
border-color: #eeeeee;
.nick {
width: 100%;
height: 50upx;
line-height: 30upx;
font-size: $font-sm;
color: $font-color-999;
}
.tit {
width: 100%;
height: 50upx;
line-height: 50upx;
font-size: $font-sm;
color: $font-color-999;
}
.demand {
width: 100%;
height: 30upx;
line-height: 30upx;
font-size: $font-sm;
color: $font-color-999;
}
.layof {
width: 100%;
height: 48upx;
line-height: 30upx;
font-size: 44upx;
color: #ff9000;
font-weight: bold;
}
.end_time {
width: 100%;
height: 30upx;
line-height: 30upx;
font-size: $font-sm;
color: $font-color-999;
margin-bottom: 10px;
}
}
.img {
position: absolute;
width: 150rpx;
height: 150rpx;
right: 28upx;
top: 40upx;
}
.get-btn {
width: 160upx;
height: 52upx;
line-height: 50upx;
position: absolute;
top: 50%;
right: 26upx;
margin-top: -26upx;
text-align: center;
border-radius: 60upx;
color: #ff9000;
border: 1px solid #ff9000;
font-size: $font-sm;
float: right;
}
}
.coupon-item:after {
width: 40upx;
height: 20upx;
position: absolute;
left: 460upx;
top: -1px;
border-radius: 0 0 40upx 40upx;
content: "";
display: block;
background: #F8F8F8;
border: 1px solid #eeeeee;
border-top: 0px;
}
.coupon-item:before {
width: 40upx;
height: 20upx;
position: absolute;
left: 460upx;
bottom: -1px;
border-radius: 40upx 40upx 0 0;
content: "";
display: block;
background: #F8F8F8;
border: 1px solid #eeeeee;
border-bottom: 0px;
}
</style>