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.
247 lines
5.9 KiB
247 lines
5.9 KiB
<template>
|
|
<view :style="colorStyle">
|
|
<view class="record" v-if="lotteryList.length">
|
|
<view class="record-list" v-for="item in lotteryList" :key="item.id">
|
|
<image class="goods-img" :src="item.prize.image" mode=""></image>
|
|
<view class="right-data">
|
|
<view class="title line1">
|
|
{{item.prize.name}}
|
|
</view>
|
|
<view class="goods-msg">
|
|
{{$t(`奖品类型`)}}:
|
|
<text class="num">
|
|
{{item.prize.type | typeName}}
|
|
</text>
|
|
</view>
|
|
<view class="goods-msg exchange" v-if="item.type == 6 && !item.receive_time"
|
|
@click="fromAddress(item)">
|
|
{{$t(`立即兑换`)}}
|
|
</view>
|
|
<view class="goods-msg" v-else>
|
|
{{$t(`兑换时间`)}}:
|
|
{{item.receive_time || '--'}}
|
|
</view>
|
|
|
|
<view class="goods-msg" v-if="item.deliver_info.deliver_name">
|
|
{{$t(`快递公司`)}}:
|
|
{{item.deliver_info.deliver_name || '--'}}
|
|
</view>
|
|
<view class="goods-msg" v-if="item.deliver_info.deliver_number">
|
|
{{$t(`快递单号`)}}:
|
|
{{item.deliver_info.deliver_number || '--'}}
|
|
<!-- #ifndef H5 -->
|
|
<view v-if="item.deliver_info.deliver_number" class='copy'
|
|
@tap='copyOrderId(item.deliver_info.deliver_number)'>{{$t(`复制`)}}</view>
|
|
<!-- #endif -->
|
|
<!-- #ifdef H5 -->
|
|
<view v-if="item.deliver_info.deliver_number" class='copy copy-data'
|
|
:data-clipboard-text="item.deliver_info.deliver_number">{{$t(`复制`)}}</view>
|
|
<!-- #endif -->
|
|
<!-- <view v-if="item.deliver_info.deliver_number" class='copy' @tap='copyOrderId(item.deliver_info.deliver_number)'>复制</view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='loadingicon acea-row row-center-wrapper' v-if='lotteryList.length > 0'>
|
|
<text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
|
|
</view>
|
|
</view>
|
|
<block v-if="lotteryList.length === 0 && !loading">
|
|
<emptyPage :title="$t(`暂无中奖记录`)"></emptyPage>
|
|
</block>
|
|
<userAddress :aleartStatus="addressModel" @getAddress="getAddress" @close="()=>{addressModel = false}">
|
|
</userAddress>
|
|
<view v-if="addressModel" class="mask" @close="()=>{addressModel = false}"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import ClipboardJS from "@/plugin/clipboard/clipboard.js";
|
|
import {
|
|
getLotteryList,
|
|
receiveLottery
|
|
} from '@/api/lottery.js'
|
|
import userAddress from '../components/userAddress.vue'
|
|
import emptyPage from '@/components/emptyPage.vue'
|
|
import colors from '@/mixins/color.js';
|
|
export default {
|
|
components: {
|
|
emptyPage,
|
|
userAddress
|
|
},
|
|
mixins: [colors],
|
|
data() {
|
|
return {
|
|
loading: false,
|
|
addressModel: false,
|
|
where: {
|
|
page: 1,
|
|
limit: 20,
|
|
},
|
|
lotteryList: [],
|
|
loadTitle: ''
|
|
}
|
|
},
|
|
onLoad() {
|
|
this.getLotteryList()
|
|
},
|
|
filters: {
|
|
typeName(type) {
|
|
if (type == 2) {
|
|
return '积分'
|
|
} else if (type == 3) {
|
|
return '余额'
|
|
} else if (type == 4) {
|
|
return '红包'
|
|
} else if (type == 5) {
|
|
return '优惠券'
|
|
} else if (type == 6) {
|
|
return '商品'
|
|
}
|
|
}
|
|
},
|
|
onReady: function() {
|
|
// #ifdef H5 || APP-PLUS
|
|
this.$nextTick(function() {
|
|
const clipboard = new ClipboardJS(".copy-data");
|
|
clipboard.on("success", () => {
|
|
this.$util.Tips({
|
|
title: this.$t(`复制成功`)
|
|
});
|
|
});
|
|
});
|
|
// #endif
|
|
},
|
|
methods: {
|
|
getAddress(data) {
|
|
let addData = data
|
|
addData.id = this.addid
|
|
addData.address = data.address.province + data.address.city + data.address.district + data.detail
|
|
receiveLottery(addData).then(res => {
|
|
this.$util.Tips({
|
|
title: this.$t(`领取成功`)
|
|
});
|
|
this.addressModel = false
|
|
this.where.page = 1
|
|
this.loadend = false;
|
|
this.lotteryList = [];
|
|
this.getLotteryList()
|
|
}).catch(err => {
|
|
this.$util.Tips({
|
|
title: err
|
|
});
|
|
})
|
|
},
|
|
fromAddress(item) {
|
|
this.addid = item.id
|
|
this.addressModel = true
|
|
},
|
|
// #ifndef H5
|
|
copyOrderId: function(data) {
|
|
let that = this;
|
|
uni.setClipboardData({
|
|
data: data
|
|
});
|
|
},
|
|
// #endif
|
|
getLotteryList() {
|
|
let that = this;
|
|
if (this.loadend) return;
|
|
if (this.loading) return;
|
|
this.loading = true;
|
|
this.loadTitle = '';
|
|
getLotteryList(this.where).then(res => {
|
|
let list = res.data;
|
|
let lotteryList = this.$util.SplitArray(list, this.lotteryList);
|
|
let loadend = list.length < this.where.limit;
|
|
this.loadend = loadend;
|
|
this.loading = false;
|
|
this.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
|
|
this.$set(this, 'lotteryList', lotteryList);
|
|
this.$set(this.where, 'page', this.where.page + 1);
|
|
}).catch(err => {
|
|
that.loading = false;
|
|
that.loadTitle = that.$t(`加载更多`);
|
|
});
|
|
}
|
|
},
|
|
onReachBottom() {
|
|
if (this.lotteryList.length > 0) {
|
|
this.getLotteryList();
|
|
} else {
|
|
this.getLotteryList();
|
|
}
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.record {
|
|
background-color: #eee;
|
|
}
|
|
|
|
.record-list {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
padding: 30rpx;
|
|
border-bottom: 1px solid #EEEEEE;
|
|
height: 100%;
|
|
|
|
.goods-img {
|
|
width: 170rpx;
|
|
height: 170rpx;
|
|
border-radius: 6rpx;
|
|
margin-right: 15rpx;
|
|
}
|
|
|
|
.right-data {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
min-height: 170rpx;
|
|
|
|
.title {
|
|
font-size: 28rpx;
|
|
|
|
}
|
|
|
|
.goods-msg {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
|
|
.num {
|
|
color: var(--view-theme);
|
|
}
|
|
|
|
.copy {
|
|
display: -webkit-inline-box;
|
|
display: -webkit-inline-flex;
|
|
width: 60rpx;
|
|
margin-left: 10rpx;
|
|
padding: 0rpx 4rpx;
|
|
border: 2rpx solid;
|
|
}
|
|
|
|
}
|
|
|
|
.exchange {
|
|
color: #fff;
|
|
background-color: var(--view-theme);
|
|
border-radius: 30rpx;
|
|
text-align: center;
|
|
padding: 4rpx 0;
|
|
}
|
|
}
|
|
|
|
.mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
z-index: 9;
|
|
}
|
|
}
|
|
</style>
|
|
|