| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <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 exchange" v-if="item.type == 4 && item.state == 'WAIT_USER_CONFIRM'"
- @click="goDetail(item)">
- {{ $t(`去领取`) }}
- </view>
- <view class="goods-msg fail-btn" v-if="item.type == 4 && item.state == 'FAIL'">
- {{ $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,
- loadend: false,
- addressModel: false,
- where: {
- page: 1,
- limit: 20
- },
- lotteryList: [],
- loadTitle: ''
- };
- },
- onShow() {
- this.where.page = 1
- this.loadend = false
- this.loading = false
- this.lotteryList = [];
- 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() {
- // #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
- });
- });
- },
- goDetail(item) {
- if (item.state == 'WAIT_USER_CONFIRM') {
- uni.navigateTo({
- url: '/pages/users/user_spread_money/receiving?type=2&id=' + item.wechat_order_id
- });
- }
- },
- 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;
- }
- }
- .fail-btn{
- color: #fff;
- background-color: #999;
- border-radius: 30rpx;
- text-align: center;
- padding: 4rpx 0;
- }
- .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>
|