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.
 
 
 
 
 

470 lines
11 KiB

<template>
<view :style="colorStyle">
<view class="lottery" v-if="lotteryShow && loading">
<image class="lottery-header" :src="image" mode=""></image>
<view class="grids">
<image class="grids-bag" src="../../static/lottery-bag.png" mode=""></image>
<view class="grids-top">
<image src="../../static/font-left.png" mode=""></image>
<view class="grids-title">
<view>{{$t(`恭喜您`)}},{{$t(`获得`)}} {{lottery_num}} {{$t(`次`)}}</view>
</view>
<image src="../../static/font-right.png" mode=""></image>
</view>
<view class="winning-tips-list" v-if="userList.data.length">
<text class="iconfont icon-huabanfuben"></text>
<noticeBar :showMsg="userList.data"></noticeBar>
</view>
<view class="grids-box">
<gridsLottery class="" :prizeData="prize" :lotteryNum="lottery_num" @get_winingIndex='getWiningIndex'
@luck_draw_finish='luck_draw_finish'>
</gridsLottery>
</view>
</view>
<!-- #ifdef H5 -->
<view class="invite-people" v-if="factor == 5" @click="H5ShareBox=true">
<view class="invite">
{{$t(`邀请好友`)}}
</view>
</view>
<!-- #endif -->
<showBox v-if="userList.data.length && is_all_record" :showMsg="userList"></showBox>
<showBox v-if="htmlData.data && is_content" :showMsg="htmlData"></showBox>
<showBox v-if="myList.data.length && is_personal_record" :showMsg="myList"></showBox>
<lotteryAleart :aleartStatus="aleartStatus" @close="closeLottery" :alData="alData" :aleartType="aleartType">
</lotteryAleart>
<view class="mask" v-if="aleartStatus || addressModel" @click="lotteryAleartClose"></view>
<userAddress :aleartStatus="addressModel" @getAddress="getAddress" @close="()=>{addressModel = false}">
</userAddress>
<!-- #ifdef H5 -->
<!-- 分享-->
<view class="share-box" v-if="H5ShareBox">
<image :src="imgHost + '/statics/images/share-info.png'" @click="H5ShareBox = false"></image>
</view>
<!-- #endif -->
<!-- #ifdef H5 -->
<view class="followCode" v-if="followCode">
<view class="pictrue">
<view class="code-bg"><img class="imgs" :src="codeSrc" /></view>
</view>
<view class="mask" @click="closeFollowCode"></view>
</view>
<zb-code ref="qrcode" v-show="false" :show="codeShow" :cid="cid" :val="val" :onval="onval"
:loadMake="loadMake" @result="qrR" />
<!-- #endif -->
</view>
<view class="no-lottery" v-else-if="!lotteryShow && loading">
<image :src="imgHost + '/statics/images/no-thing.png'"></image>
<text>{{$t(`商家暂未上架活动哦`)}}</text>
</view>
<!-- #ifndef MP -->
<home></home>
<!-- #endif -->
</view>
</template>
<script>
import {
getLotteryData,
startLottery,
receiveLottery
} from '@/api/lottery.js'
import {
getUserInfo
} from '@/api/user.js';
import zbCode from '@/components/zb-code/zb-code.vue'
import gridsLottery from '../../components/lottery/index.vue'
import showBox from '../components/showbox.vue'
import noticeBar from '../components/noticeBar.vue'
import lotteryAleart from '../components/lotteryAleart.vue'
import userAddress from '../components/userAddress.vue'
import home from '@/components/home';
import {
toLogin
} from '@/libs/login.js';
import {
mapGetters
} from "vuex";
import colors from '@/mixins/color.js';
import {HTTP_REQUEST_URL} from '@/config/app';
const app = getApp();
export default {
components: {
gridsLottery,
showBox,
noticeBar,
lotteryAleart,
userAddress,
zbCode,
home
},
mixins:[colors],
data() {
return {
imgHost:HTTP_REQUEST_URL,
lotteryShow: true,
loading: false,
H5ShareBox: false,
// #ifdef H5
isWeixin: this.$wechat.isWeixin(),
// #endif
addressModel: false,
lottery_num: 0,
aleartType: 0,
aleartStatus: false,
lottery_draw_param: {
startIndex: 3, //开始抽奖位置,从0开始
totalCount: 3, //一共要转的圈数
winingIndex: 1, //中奖的位置,从0开始
speed: 100 //抽奖动画的速度 [数字越大越慢,默认100]
},
userList: {
type: 'user',
data: []
},
myList: {
type: 'me',
data: []
},
htmlData: {
type: 'html',
data: ''
},
prize: [],
factor_num: 0,
id: 0,
alData: {},
type: '',
followCode: false,
//二维码参数
codeShow: false,
cid: '1',
ifShow: true,
val: "", // 要生成的二维码值
lv: 3, // 二维码容错级别 , 一般不用设置,默认就行
onval: true, // val值变化时自动重新生成二维码
loadMake: true, // 组件加载完成后自动生成二维码
src: '', // 二维码生成后的图片地址或base64
codeSrc: "",
image: "", //上部背景图
is_content: 0,
is_all_record: 0,
is_personal_record: 0,
factor: 0
}
},
computed: mapGetters(['isLogin']),
watch: {
isLogin: {
handler: function(newV, oldV) {
if (newV) {
this.getLotteryData(this.type)
}
},
deep: true
}
},
onLoad(option) {
this.type = option.type
if (this.isLogin) {
this.getLotteryData(this.type)
} else {
toLogin();
}
},
methods: {
//#ifdef H5
ShareInfo(data) {
let href = location.href;
if (this.$wechat.isWeixin()) {
getUserInfo().then(res => {
href = href.indexOf('?') === -1 ? href + '?spread=' + res.data.uid : href + '&spread=' +
res.data.uid;
let configAppMessage = {
desc: data.name,
title: data.name,
link: href,
imgUrl: data.image
};
this.$wechat
.wechatEvevt(['updateAppMessageShareData', 'updateTimelineShareData',
'onMenuShareAppMessage',
'onMenuShareTimeline'
], configAppMessage)
.then(res => {})
.catch(err => {});
});
}
},
//#endif
getLotteryData(type) {
uni.showLoading({
title: this.$t(`获取抽奖信息`)
});
getLotteryData(type).then(res => {
this.loading = true
this.factor_num = res.data.lottery.factor_num
this.id = res.data.lottery.id
this.image = res.data.lottery.image
this.prize = res.data.lottery.prize
this.lottery_num = res.data.lottery_num
this.htmlData.data = res.data.lottery.content
this.is_content = res.data.lottery.is_content
this.is_personal_record = res.data.lottery.is_personal_record
this.is_all_record = res.data.lottery.is_all_record
this.factor = res.data.lottery.factor
this.userList.data = res.data.all_record
this.myList.data = res.data.user_record
this.prize.push({})
// #ifdef H5
if (this.isLogin) {
this.ShareInfo(res.data.lottery);
}
// #endif
uni.hideLoading();
}).catch(err => {
uni.hideLoading();
this.lotteryShow = false
this.loading = true
this.$util.Tips({
title: err
});
})
},
closeLottery(status) {
this.aleartStatus = false
this.getLotteryData(this.type)
if (this.alData.type === 6) {
this.addressModel = true
}
},
getAddress(data) {
let addData = data
addData.id = this.alData.lottery_record_id
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
}).catch(err => {
this.$util.Tips({
title: err
});
})
},
getWiningIndex(callback) {
this.aleartType = 0
let that = this
startLottery({
id: this.id,
type: this.type
}).then(res => {
if (res.data.code === 'subscribe') {
that.$set(that, 'followCode', true);
this.codeSrc = res.data.url
return;
}
this.prize.forEach((item, index) => {
if (res.data.id === item.id) {
this.alData = res.data
this.lottery_draw_param.winingIndex = index;
callback(this.lottery_draw_param);
}
})
}).catch(err => {
this.$util.Tips({
title: err
});
})
// //props修改在小程序和APP端不成功,所以在这里使用回调函数传参,
},
// 抽奖完成
luck_draw_finish(param) {
this.aleartType = 2
this.aleartStatus = true
},
qrR(res) {
this.codeSrc = res
},
}
}
</script>
<style lang="scss" scoped>
page{
background-color: #E74435;
}
.lottery {
background-color: #E74435;
padding: 0 0 20rpx 0;
.lottery-header {
width: 100%;
height: 580rpx;
margin: 0;
}
.grids {
width: 100%;
height: 800rpx;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: -200rpx;
position: relative;
padding: 30rpx;
.grids-bag {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.grids-box {
width: 560rpx;
height: 560rpx;
// z-index: 10000;
}
.grids-top {
display: flex;
image {
width: 40rpx;
height: 40rpx;
}
.grids-title {
display: flex;
justify-content: center;
width: 100%;
font-size: 20px;
color: #fff;
z-index: 999;
padding: 0 14rpx;
.grids-frequency {
color: #FFD68E;
}
}
}
.winning-tips-list {
display: flex;
align-items: center;
justify-content: center;
width: 50%;
font-size: 20rpx;
line-height: 40rpx;
height: 40rpx;
font-weight: 400;
color: #FFF8F8;
margin: 20rpx 0;
z-index: 999;
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 51%, rgba(255, 255, 255, 0) 100%);
.iconfont {
font-size: 20rpx;
margin-right: 10rpx;
}
}
}
.invite-people {
display: flex;
justify-content: center;
.invite {
display: flex;
justify-content: center;
align-items: center;
width: 558rpx;
height: 76rpx;
font-size: 32rpx;
font-weight: 600;
color: #E74435;
background: #FFD68E;
box-shadow: 0px 6px 0px 0px rgba(185, 16, 0, 0.3);
border-radius: 38px;
margin: 76rpx;
}
}
}
.mask {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 9;
}
.share-box {
z-index: 1300;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
image {
width: 100%;
height: 100%;
}
}
.followCode {
.pictrue {
width: 500rpx;
height: 530rpx;
border-radius: 12px;
left: 50%;
top: 50%;
margin-left: -250rpx;
margin-top: -360rpx;
position: fixed;
z-index: 10000;
.code-bg {
display: flex;
justify-content: center;
width: 100%;
height: 100%;
background-image: url('~@/static/images/code-bg.png');
background-size: 100% 100%;
}
.imgs {
width: 310rpx;
height: 310rpx;
margin-top: 92rpx;
}
}
.mask {
z-index: 9999;
}
}
.no-lottery {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
font-size: 28rpx;
color: #ccc;
image{
padding: 50rpx;
}
}
[v-cloak] {
display: none;
}
</style>