123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- <template>
- <view class="app-coupon-pick">
- <view class="coupon-tab dir-left-nowrap cross-center" @touchmove.stop="true">
- <view @click="couponType=1"
- class="box-grow-1"
- :class="[couponType==1?(`active ${themeTextClass}`):``]">可用优惠券
- <template v-if="list">({{list.length}})</template>
- <view class="active-block"
- :class="[themeBgClass]"></view>
- </view>
- <view class="box-grow-0 split"></view>
- <view @click="couponType=0"
- class="box-grow-1"
- :class="[couponType==0?(`active ${themeTextClass}`):``]">不可用优惠券
- <template v-if="cantUseList">({{cantUseList.length}})</template>
- <view class="active-block"
- :class="[themeBgClass]"></view>
- </view>
- </view>
- <scroll-view scroll-y="true" class="list-scroll">
- <view class="coupon-list" v-if="couponType == 1">
- <view v-if="list === null" style="padding: 50rpx; text-align: center; color: #999;">加载中</view>
- <template v-else>
- <view v-if="!list.length" style="padding: 128rpx; text-align: center;">
- <image src="/static/image/no-goods.png"
- style="width: 240rpx;height: 240rpx;margin-bottom: 36rpx;"></image>
- <view style="color: #999999;">暂无可用优惠券</view>
- </view>
- <template v-else>
- <view v-for="(item,index) in list"
- :key="index"
- class="item">
- <view class="dir-left-nowrap cross-center top"
- :style="{
- backgroundImage: `url(${appImg.order_submit.coupon_bg})`,
- }">
- <view class="box-grow-0 mr-32">
- <view v-if="item.type==1" class="dir-left-nowrap cross-bottom">
- <view style="font-size: 72rpx;line-height: 1;">{{item.discount}}</view>
- <view style="line-height: 1.75">折</view>
- </view>
- <view v-else class="dir-left-nowrap cross-bottom">
- <view style="line-height: 1.75">¥</view>
- <view style="font-size: 72rpx;line-height: 1;">{{item.sub_price}}</view>
- </view>
- </view>
- <view class="box-grow-1" style="font-size: 24rpx;">
- <view class="desc-row">{{item.coupon_data.name}}</view>
- <view class="desc-row">满{{item.coupon_min_price}}元可用</view>
- <view v-if="item.discount_limit" class="desc-row">
- 优惠上限:¥{{item.discount_limit}}
- </view>
- </view>
- <app-submit-checkbox
- round
- v-model="item.checked"
- :theme="theme"
- border-color="#999999"
- @input="handleCouponChange"
- :sign="index"></app-submit-checkbox>
- </view>
- <view class="bottom">
- <view style="margin-bottom: 12rpx;">有效日期:{{item.start_time}}-{{item.end_time}}</view>
- <view>适用范围:{{item.coupon_data.appoint_type == 3 ? '全场通用' : item.coupon_data.appoint_type == 5?'礼品卡' : '限品类'}}</view>
- </view>
- </view>
- </template>
- </template>
- </view>
- <view class="coupon-list" v-else>
- <view v-if="cantUseList === null" style="padding: 50rpx; text-align: center; color: #999;">加载中</view>
- <template v-else>
- <view v-if="!cantUseList.length" style="padding-top: 128rpx; text-align: center;">
- <image src="/static/image/no-goods.png"
- style="width: 240rpx;height: 240rpx;margin-bottom: 36rpx;"></image>
- <view style="color: #999999;">暂无不可用优惠券</view>
- </view>
- <template v-else>
- <view v-for="(item,index) in cantUseList"
- :key="index"
- class="item">
- <view class="dir-left-nowrap cross-center top"
- :style="{
- backgroundImage: `url(${appImg.order_submit.coupon_bg_disable})`,
- }">
- <view class="box-grow-0 mr-32">
- <view v-if="item.type==1" class="dir-left-nowrap cross-bottom">
- <view style="font-size: 72rpx;line-height: 1;">{{item.discount}}</view>
- <view style="line-height: 1.75">折</view>
- </view>
- <view v-else class="dir-left-nowrap cross-bottom">
- <view style="line-height: 1.75">¥</view>
- <view style="font-size: 72rpx;line-height: 1;">{{item.sub_price}}</view>
- </view>
- </view>
- <view class="box-grow-1" style="font-size: 24rpx;">
- <view class="desc-row">{{item.coupon_data.name}}</view>
- <view class="desc-row">满{{item.coupon_min_price}}元可用</view>
- <view v-if="item.discount_limit" class="desc-row">
- 优惠上限:¥{{item.discount_limit}}
- </view>
- </view>
- </view>
- <view class="bottom">
- <view style="margin-bottom: 12rpx;">有效日期:{{item.start_time}}-{{item.end_time}}</view>
- <view>适用范围:{{item.coupon_data.appoint_type == 3 ? '全场通用' : '限品类'}}</view>
- </view>
- </view>
- </template>
- </template>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- import {mapState} from 'vuex';
- import AppSubmitCheckbox from "./app-submit-checkbox.vue";
- export default {
- name: "app-coupon-pick",
- components: {
- AppSubmitCheckbox
- },
- props: {
- theme: {
- type: String,
- default: 'a'
- },
- plugin: String,
- mchIndex: {
- type: Number,
- default: 0
- },
- noCoupons: {
- type: Boolean,
- default: false
- },
- },
- data() {
- return {
- couponType: 1,
- loading: false,
- list: null,
- cantUseList: null
- }
- },
- computed: {
- ...mapState({
- appImg: state => state.mallConfig.__wxapp_img
- }),
- themeBgClass() {
- if (this.theme.indexOf('gift') >= 0) {
- return `${this.theme} ${this.theme}-background`;
- } else {
- return `${this.theme} ${this.theme}-m-back`;
- }
- },
- themeTextClass() {
- if (this.theme.indexOf('gift') >= 0) {
- return `${this.theme} ${this.theme}-color`;
- } else {
- return `${this.theme} ${this.theme}-m-text`;
- }
- },
- },
- created() {
- this.$store.commit('orderSubmit/mutSetMchNoCouponStatusList', []);
- this.loadData();
- this.loadData(true);
- },
- methods: {
- loadData(loadCantUse = false) {
- this.loading = true;
- this.$request({
- url: this.$api.order.usable_coupon_list,
- method: 'post',
- data: {
- form_data: JSON.stringify(this.$store.state.orderSubmit.formData.list[this.mchIndex]),
- is_cant_use_list: loadCantUse ? 1 : 0,
- sign: this.plugin
- }
- }).then(response => {
- this.loading = false;
- if (response.code === 0) {
- if (loadCantUse) {
- this.cantUseList = response.data.list;
- } else {
- for (let i in response.data.list) {
- response.data.list[i].checked = false;
- }
- this.list = response.data.list;
- const mchNoCouponStatusList = this.$store.getters['orderSubmit/getMchNoCouponStatusList'];
- let noCoupons = true;
- if (this.$validation.isEmpty(this.list)) {
- noCoupons = true;
- } else {
- noCoupons = false;
- }
- this.$emit('update:noCoupons', noCoupons);
- mchNoCouponStatusList[this.mchIndex] = noCoupons;
- this.$store.commit('orderSubmit/mutSetMchNoCouponStatusList', mchNoCouponStatusList);
- }
- } else {
- }
- }).catch(() => {
- this.loading = false;
- });
- },
- handleCouponChange(v, index) {
- if (v) {
- this.setData(this.list[index].id, index);
- } else {
- this.setData(0, index);
- }
- },
- setData(data, index) {
- if (parseInt(data) === 0) {
- this.list[index].checked = false;
- } else {
- for (let i in this.list) {
- this.list[i].checked = parseInt(index) === parseInt(i);
- }
- }
- const formData = this.$store.state.orderSubmit.formData;
- formData.list[this.mchIndex].user_coupon_id = data;
- this.$store.commit('orderSubmit/mutSetFormData', formData);
- this.$emit('change');
- },
- },
- }
- </script>
- <style scoped lang="scss">
- .app-coupon-pick {
- .mr-32 {
- margin-right: #{32rpx};
- }
- .btn {
- height: #{56rpx};
- line-height: #{56rpx};
- padding: 0 #{32rpx};
- border-radius: #{1000rpx};
- background: #fff;
- text-align: center;
- border: #{1rpx} solid;
- }
- .btn:active {
- box-shadow: 0 0 #{100rpx} rgba(0, 0, 0, 0.05) inset;
- }
- .btn.use {
- color: #c5a977;
- border-color: transparent;
- }
- .btn.dont-use {
- height: #{80rpx};
- line-height: #{80rpx};
- }
- .coupon-tab {
- > view {
- text-align: center;
- padding: #{32rpx};
- position: relative;
- }
- .active {
- }
- .active-block {
- position: absolute;
- bottom: 0;
- left: 50%;
- height: #{4rpx};
- width: #{110rpx};
- margin-left: -#{60rpx};
- display: none;
- }
- .active {
- .active-block {
- display: block;
- }
- }
- .split {
- width: #{1rpx};
- height: #{28rpx};
- background: #ddd;
- padding: 0;
- }
- border-bottom: #{1rpx} solid #ddd;
- }
- .list-scroll {
- overflow: hidden;
- background: #f7f7f7;
- height: #{913rpx};
- }
- .coupon-list {
- box-sizing: border-box;
- padding: #{32rpx};
- .item {
- margin: #{32rpx} 0;
- background: #fff;
- border-radius: #{16rpx};
- box-shadow: 0 0 #{10rpx} rgba(0, 0, 0, .05);
- overflow: hidden;
- .top {
- padding: #{40rpx} #{24rpx};
- color: #fff;
- background-size: 100% 100%;
- .desc-row {
- margin: #{6rpx} 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .bottom {
- padding: #{24rpx} #{24rpx};
- font-size: #{24rpx};
- }
- }
- }
- }
- </style>
|