coupon-list.vue 3.79 KB
<template>
  <YohoActionSheet ref="actionSheet" @cancel="close">
    <div class="pay-type-wrapper">
      <div class="header">
        <div class="title">选择优惠券</div>
        <span><i class="iconfont iconweibiao45133 close" @click="close"></i></span>
      </div>
      <slot name="content">
        <div class="pay-list-wrapper">
          <div class="pay-list-item" v-for="item in data" :key="item.coupon_code" @click="onItemClick(item)">
            <div class="pay-info">
              <div class="price">{{item.coupon_value_str}}</div>
              <div class="price-desc">{{item.use_rule_str}}</div>
            </div>

            <div class="coupon-info">
              <div class="coupon-name">[{{ isSeller ? '卖家券': item.coupon_type_name }}]{{item.coupon_name}}</div>

              <div class="coupon-time">{{item.coupon_validity}}</div>
            </div>
            <Check class="check" :value="item.selected === 'Y'"></Check>

            <div class="time-up" v-if="item.is_expired_soon === 'Y'"></div>
          </div>
        </div>
      </slot>
      <div class="footer">
        <YohoButton txt="确定" class="btn-wrapper" @click="pay"></YohoButton>
      </div>
    </div>
  </YohoActionSheet>
</template>

<script>
import YohoActionSheet from '../action-sheet';
import Check from '../order-pay-type/check2';
import YohoButton from '../button';

export default {
  name: 'OrderCouponList',
  props: {
    data: {
      type: Array,
      default() {
        return [];
      }
    },
    isSeller: {
      type: Boolean,
      default() {
        return false;
      }
    }
  },
  components: {
    YohoButton,
    YohoActionSheet,
    Check
  },
  data() {
    return {};
  },
  methods: {
    show() {
      this.$refs.actionSheet.show();
    },
    hide() {
      this.$refs.actionSheet.hide();
    },
    close() {
      this.hide();
      this.$emit('closeAction');
    },
    pay() {
      this.$emit('confirmAction');
    },
    onItemClick(item) {
      this.$emit('itemClickAction', { couponCode: item.coupon_code, couponType: item.coupon_type });
    }
  }
};
</script>

<style lang="scss" scoped>
.pay-type-wrapper {
  height: 960px;
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 32px 32px;
  border-top-right-radius: 32px 32px;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.title {
  font-weight: bold;
  font-size: 32px;
  color: #222;
}

.close {
  font-size: 32px;
}

.pay-list-wrapper {
  flex: 1;
  overflow-y: auto;
  background-color: #f5f5f5;
}

.pay-list-item {
  height: 200px;
  font-size: 28px;
  margin: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url(~statics/image/order/bg@3x.png) no-repeat;
  background-size: cover;
  position: relative;
}

.check {
  font-size: 48px;
  margin-left: 40px;
  margin-right: 40px;
}

.pay-info {
  width: 210px;
}

.footer {
  font-size: 32px;
  height: 112px;
  background-color: white;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-wrapper {
  width: 640px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
  font-weight: bold;
}

.price-info {
  margin-top: 40px;
  margin-bottom: 60px;
}

.price {
  font-size: 72px;
  color: #002b47;
  text-align: center;
  font-weight: bolder;
}

.price-desc {
  font-size: 24px;
  color: #002b47;
  text-align: center;
}

.coupon-info {
  flex: 1;
  height: 160px;
  padding-left: 20px;
}

.coupon-name {
  font-size: 24px;
  color: #002b47;
  margin-bottom: 40px;
}

.coupon-time {
  font-size: 22px;
  color: #999;
}

.time-up {
  background: url(~statics/image/coupon/time-up@3x.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
}

</style>