| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <view class="coupon-list">
- <view v-for="(item, index) in list" :key="index" class="m-t-20">
- <view :class="'coupon-item flex ' + (btnType == 1 || btnType == 2 ? 'gray': '')">
- <view class="price white flex-col col-center">
- <view class="xl">
- <price-format :first-size="60" :second-size="50" :subscript-size="34" :price="item.money"
- :weight="500" />
- </view>
- <view class="sm text-center">{{item.condition_type_desc}}</view>
- </view>
- <view class="info m-l-20">
- <view class="lg m-b-20">{{item.coupon_name}}</view>
- <view class="xs lighter m-b-20">{{item.user_time_desc}}</view>
- <view class="xs lighter">{{item.use_scene_desc}}</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.use_goods_desc" @tap="onShowTips(index)">
- <view class="flex row-between">
- <view class="xs">使用说明</view>
- <u-icon :class="showTips[index] ? 'rotate' : ''" name="arrow-down" />
- </view>
- <view v-show="showTips[index]" class="m-t-10 xs">{{item.use_goods_desc}}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getCoupon
- } from '@/api/activity';
- export default {
- data() {
- return {
- showTips: []
- };
- },
- 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() {
- if (!this.isLogin) return this.$Router.push('/pages/login/login')
- getCoupon(this.id).then(res => {
- if (res.code == 1) {
- this.$toast({
- title: res.msg
- })
- setTimeout(() => {
- this.$emit('refresh');
- },1500)
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .coupon-list {
- padding: 0 24rpx;
- overflow: hidden;
- .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;
- &.plain {
- background-color: #fff;
- color: $-color-primary;
- 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>
|