2025-08-07 17:02:44 +08:00

211 lines
5.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="coupon-list">
<view v-for="(item, index) in list" :key="index" class="mb20">
<view :class="'coupon-item row ' + (btnType == 1 || btnType == 2 ? 'gray': '')">
<view class="price white column-center">
<view class="xl">
<price-format :first-size="60" :second-size="50" :subscript-size="34" :price="item.money" :weight="500" />
</view>
<view class="sm" style="text-align: center">{{item.use_condition}}</view>
</view>
<view class="info ml20">
<view class="bold lg mb10">{{item.name}}</view>
<view class="xs lighter mb20">{{item.use_time_tips}}</view>
<view class="xs lighter ">{{item.coupon_type}}</view>
</view>
<button type="primary" :class="'btn br60 white xs ' + (btnType != 3 ? 'plain': '')" @tap="onHandle(item.id)">
{{getBtn}}
</button>
<image v-if="item.is_get" class="receive" src="/static/images/coupon_receive.png"></image>
</view>
<view style="padding: 14rpx 20rpx" class="bg-white" v-if="item.tips" @tap="onShowTips(index)">
<view class="row-between">
<view class="xs">使用说明</view>
<u-icon :class="showTips[index] ? 'rotate' : ''" name="arrow-down" />
</view>
<view v-show="showTips[index]" class="mt10 xs">{{item.tips}}</view>
</view>
</view>
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权购买去版权授权后方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
import { getCoupon } from '../../api/user';
export default {
data() {
return {
showTips: []
};
},
components: {
},
props: {
list: {
type: Array,
default: () => []
},
btnType: {
// 0 去使用 1已使用 2已过期 3领取
type: Number
}
},
watch: {
list: {
handler: function (val) {
let arr = val.map(item => {
return 0;
});
this.showTips = arr
},
immediate: true,
deep: true
}
},
computed: {
},
computed: {
getBtn() {
var text = ''
switch (this.btnType) {
case 0:
text = '去使用';
break;
case 1:
text = '已使用';
break;
case 2:
text = '已过期';
break;
case 3:
text = '领取';
break;
}
return text
}
},
methods: {
onHandle(id) {
this.id = id;
const {
btnType
} = this;
switch (btnType) {
case 0:
uni.switchTab({
url: '/pages/index/index'
});
break;
case 1:
// text = '去使用';
break;
case 2:
// text = '已使用';
break;
case 3:
this.getCouponFun();
break;
}
},
onShowTips(index) {
const {
showTips
} = this;
this.showTips[index] = showTips[index] ? 0 : 1
// 拷贝数组
this.showTips = Object.assign([], this.showTips);
},
getCouponFun() {
getCoupon(this.id).then(res => {
if (res.code == 1) {
this.$toast({title: res.msg})
this.$emit('reflash');
}
});
}
}
};
</script>
<style lang="scss" >
/* components/coupon-list/coupon-list.wxss */
.coupon-list {
padding: 20rpx 24rpx;
.coupon-item {
position: relative;
height: 200rpx;
background-image: url(../../static/images/coupon_bg.png);
background-size: 100% 100%;
&.gray {
background-image: url(../../static/images/coupon_bg_grey.png);
.btn{
&.plain {
color: #CCCCCC;
}
}
}
.price {
width: 200rpx;
}
.btn {
line-height: 52rpx;
height: 52rpx;
position: absolute;
right: 20rpx;
bottom: 20rpx;
width: 120rpx;
text-align: center;
padding: 0;
text-align: center;
box-sizing: border-box;
&.plain {
background-color: #fff;
color: var(--primary-color);
border: 1px solid currentColor;
}
}
.receive {
position: absolute;
right: 30rpx;
top: 0rpx;
width: 99rpx;
height: 77rpx;
}
}
.icon {
transition: all 0.4s;
}
.rotate {
transform: rotateZ(-180deg);
}
}
</style>