123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059 |
- <template>
- <view class="luckyDraw">
- <image src="../../static/backImg.png" class="back" mode="widthFix"></image>
- <view class="luckyDrawContent">
-
- <!-- 个人信息模块 -->
- <view class="luckyDrawTop">
- <view class="left">
- <view class="avatarView">
- <open-data type="userAvatarUrl" class="avatar"></open-data>
- </view>
- <view class="userInfo">
- <view class="account">{{mpName}}</view>
- <view class="ID">ID:{{userId}}</view>
- </view>
- </view>
- <view class="right" @click="jumpSign">
- <text>签到有礼</text>
- </view>
- </view>
-
- <!-- 滚动通知 -->
- <view class="notice">
- <image src="../../static/horn.png" class="horn" mode="widthFix"></image>
- <view class="txts">
- <u-notice-bar mode="vertical" :volume-icon="false" color="#FFFFFF" type="none" :list="list"></u-notice-bar>
- </view>
- </view>
-
- <!-- 大转盘 -->
- <view class="turntable">
- <view class="decorate">
- <image src="../../static/decorate.png" class="decorateBack" mode="widthFix"></image>
- <image src="../../static/chassis.png" class="decorateChassis" mode="widthFix"></image>
- </view>
- <view class="turntableContent">
- <almost-lottery
- :canvasId="canvasConfig.canvasId"
- :canvasWidth="canvasConfig.width"
- :canvasHeight="canvasConfig.height"
- :outerWidth="canvasConfig.outerWidth"
- :outerHeight="canvasConfig.outerHeight"
- :colors="canvasConfig.colors"
- :ringCount="8"
- :duration="5"
- :prizeList="prizeList"
- :prizeIndex="prizeIndex"
- @reset-index="prizeIndex = -1"
- @draw-start="handleDrawStart"
- @draw-end="handleDrawEnd"
- @finish="handleDrawFinish"
- v-if="prizeList.length"
- />
- <view class="bottom">
- <view class="cont">今日剩余抽奖次数:<text>{{freeNum}}</text></view>
- <navigator :url="'../checkInRecord/checkInRecord' + getSerialize({...mpData, openId})" class="record" hover-class="none">
- <text>中奖记录</text>
- </navigator>
- </view>
- </view>
- </view>
-
- <!-- 我的奖品 -->
- <view class="myPrize">
- <view class="title">我的奖品</view>
- <view class="chips">
- <view class="chip" v-for="(item, index) in prizeCountDtoList" :key="index">
- <image src="../../static/iPhone12Chip.png" mode="widthFix" v-if="item.prizeType === 3"></image>
- <image src="../../static/vipChip.png" mode="widthFix" v-else></image>
- <view class="text">{{item.prizeName}}</view>
- <view class="progress">
- <view class="value" :style="{width: item.prizeCount && item.prizeCount > 0 ? (item.prizeCount/item.maxCount*100) + '%' : '0'}"></view>
- <text>{{item.prizeCount}}/{{item.maxCount}}</text>
- </view>
- </view>
- </view>
- <view class="clearTime" v-if="clearTime">碎片有效期至:{{clearTime | getTimerFilter}} </view>
- </view>
-
- <!-- 活动规则模块 -->
- <view class="activityRules">
- <view class="top" @click="activityRulesHandle">
- <text>活动规则</text>
- <image :src="!activityRules ? '../../static/unfold.png' : '../../static/retract.png'" mode="widthFix"></image>
- </view>
- <view class="bottom" v-if="activityRules">
- <view>1、每个用户账户每天最多有10次抽奖机会,每天0点刷新。</view>
- <view>2、每天前2次可直接领取抽奖奖品,其他8次抽奖机会需要通过观看激励视频来获得。</view>
- <view>3、用户必须在对应公众号内登陆抽奖,否则书币将无法顺利领取。</view>
- <view>4、书币及7天书城VIP会员抽中后自动发放至书城账号,可在中奖记录中查看,或进入书城的“个人中心-充值记录-赠送”查看。</view>
- <view>5、用户可以通过完成本产品抽奖获得碎片,碎片种类由系统随机发放,兑换手机需集满50个碎片, 兑换书城VIP需集满30个碎片。碎片累计有效期为7天,在碎片超出有效期后或用户成功兑换奖品后,此前已获得的该奖品碎片都将清零。</view>
- <view>6、实物奖品请联系公众号内客服领取,实物奖品颜色随机寄送,以中奖用户收到的实物为准。</view>
- <view>7、若发现用户恶意违规行为,开发者有权取消其获奖资格。</view>
- <view>8、本活动解释权由开发者所有,有任何疑问请联系公众号内客服。</view>
- </view>
- </view>
-
- <!-- 弹窗 -->
- <view class="popup" v-if="popupShow">
- <view class="popupContent">
- <view class="content">
- <image src="../../static/popupBack.png"></image>
- <view class="textCon">
- <text class="ts">恭喜您获得</text> </br>
- <text class="reward ts">{{luckyDay.name}}</text> </br>
- <image src="../../static/doubleBt.png" class="doubleBt" mode="widthFix" :style="{transform: `scale(${scale})`}" @click="lookVideo"></image> </br>
- <text class="bt" @click="receiveGold(false)">不了,单倍领取</text>
- </view>
- </view>
- <image src="../../static/close.png" class="close" mode="widthFix" @click="closeHandle"></image>
- </view>
- </view>
- <!-- 弹窗VIP -->
- <view class="popupVIP popup" v-if="popupVIPShow">
- <view class="popupContent" style="width: 524rpx;">
- <view class="content">
- <image src="../../static/vipBack.png"></image>
- <view class="textCon" style="display: flex; align-items: flex-end;">
- <view class="againLuckDrawBt btVip" @click="againLuckDraw('vip');startAni(2)" :style="{transform: `scale(${scale})`}">再次抽奖</view>
- </view>
- </view>
- <image src="../../static/close.png" class="close" mode="widthFix" @click="popupVIPShow = false;startAni(2)"></image>
- </view>
- </view>
- <!-- 弹窗12 -->
- <view class="popup12 popup" v-if="popup12Show">
- <view class="popupContent" style="width: 702rpx;">
- <view class="content">
- <image src="../../static/12Back.png" style="height: 722rpx;"></image>
- <view class="textCon" style="display: flex; align-items: flex-end;">
- <view class="againLuckDrawBt" @click="againLuckDraw('12'); startAni(3)" :style="{transform: `scale(${scale})`, marginBottom: 0}">再次抽奖</view>
- </view>
- </view>
- <image src="../../static/close.png" class="close" mode="widthFix" @click="popup12Show = false; startAni(3)"></image>
- </view>
- </view>
- <!-- 弹窗金币 -->
- <view class="popup12 popup" v-if="popupGoldShow">
- <view class="popupContent" style="width: 636rpx;">
- <view class="content">
- <image src="../../static/goldBack.png" style="height: 790rpx;"></image>
- <view class="textCon" style="display: flex; align-items: center; flex-direction: column; justify-content: flex-end;">
- <text class="goldText">恭喜您获得</text> </br>
- <text class="goldText" style="margin-bottom: 48rpx;">{{luckyDay.name}}</text>
- <view class="againLuckDrawBt btGold" @click="againLuckDraw('gold'); startGold(false)" :style="{transform: `translateX(12rpx) scale(${scale})`}">再次抽奖</view>
- </view>
- </view>
- <image src="../../static/close.png" class="close" mode="widthFix" @click="popupGoldShow = false; startGold(false)"></image>
- </view>
- </view>
-
- <!-- 碎片飞行 -->
- <view class="fragmentAni" :animation="animationData">
- <image :src="prizeType === 3 ? '../../static/turntable_iPhone12.png' : '../../static/turntable_VIP.png'" mode="widthFix"></image>
- </view>
- <!-- 金币飞行组 -->
- <view class="fragmentGold" :animation="animationDatas[index]" v-for="(item, index) in goldData" :key="index" :style="{top: item.top, left: item.left}">
- <image src="../../static/turntable_gold.png" mode="widthFix"></image>
- </view>
- <!-- 弹窗提示 -->
- <view class="receiveTs" :animation="animationDataTs">
- {{tsTitle}}
- </view>
- </view>
- </view>
- </template>
- <script>
- let timer = null
- import AlmostLottery from '@/uni_modules/almost-lottery/components/almost-lottery/almost-lottery.vue'
- import { config, getHome, getOpenId, getBanner, setDrawGain, getPond, setReceive } from '@/api/api.js'
- import { clearCacheFile } from '@/uni_modules/almost-lottery/utils/almost-utils.js'
-
- export default {
- components: {
- AlmostLottery
- },
- data() {
- return {
- title: 'Hello',
- list: [
- '恭喜用户 “9016” 成功提现 2000书币',
- '恭喜用户 “9017” 成功提现 10书币',
- '恭喜用户 “9018” 成功提现 20书币',
- '恭喜用户 “9019” 成功提现 100书币'
- ],
- // canvas id、宽、高
- canvasConfig: {
- canvasId: 'almostLotteryCanvas',
- width: 300,
- height: 300,
- outerWidth: 325,
- outerHeight: 325,
- colors: [
- '#FEE3C6',
- '#FFFFFF'
- ]
- },
- // 以下是奖品配置数据
- // 奖品数据
- prizeList: [],
- // 奖品是否设有库存
- onStock: false,
- // 中奖下标
- prizeIndex: -1,
- // 是否正在抽奖中,避免重复触发
- prizeing: false,
-
- // 以下为业务需求有关示例数据
- // 当日免费抽奖次数余额
- freeNum: 10,
-
- // 以下是
- // 活动规则开关控制
- activityRules: false,
- // 弹窗控制
- popupShow: false,
- // 抽到VIP碎片弹窗控制
- popupVIPShow: false,
- // 抽到12碎片弹窗控制
- popup12Show: false,
- // 抽到金币弹窗控制
- popupGoldShow: false,
-
- openId: '',
- mpData: {},
- prizeCountDtoList: [], // 碎片列表
- mpName: null, // 渠道号
- userId: null, //
- luckyDay: {}, // 中奖信息
- doubleKey: "", // 领取key
- clearTime: "", // 碎片有效期
- scale: 1,
- animation: null, // 动画实例
- animationData: null, // 动画
- animationDatas: [null, null, null, null, null, null, null, null], // 动画组
- animationDataTs: null,
- prizeType: 3, // 奖品类型
- durationMath: 20, // 防止动画每次都一样
- durationMath1: 20,
- durationMath2: 20,
- goldData: [
- {top: '404rpx', left: '300rpx'},
- {top: '434rpx', left: '240rpx'},
- {top: '430rpx', left: '398rpx'},
- {top: '448rpx', left: '424rpx'},
- {top: '380rpx', left: '412rpx'},
- {top: '332rpx', left: '332rpx'},
- {top: '356rpx', left: '240rpx'},
- {top: '474rpx', left: '294rpx'}
- ],
- tsTitle: '', //提示信息
- }
- },
- computed: {
- isApple() {
- return uni.getSystemInfoSync().platform === 'ios'
- }
- },
- onLoad(options) {
- // 请求奖品数据
- this.mpData = options
- this.getData()
- this.animation = uni.createAnimation({ timingFunction: 'ease' })
- },
- onUnload() {
- uni.hideLoading()
- timer && clearInterval(timer)
- },
- onShareAppMessage() {},
- filters: {
- getTimerFilter(value) { // 获取年月日时分秒
- if(!value) return ""
- let timestamp = Date.parse(new Date(value))
- let date = new Date(timestamp)
- let Y = date.getFullYear()
- let M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1)
- let D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate()
-
- let H = date.getHours() < 10 ? '0' + date.getHours() : date.getHours()
- let minute = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
- let S = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds()
-
- return `${Y}-${M}-${D} ${H}:${minute}:${S}`
- }
- },
- async onPullDownRefresh() {
- await this.handleInitCanvas()
- await this.getList()
- uni.stopPullDownRefresh();
- },
- watch: {
- // 监听获奖序号的变动
- popupShow(newVal, oldVal) {
- this.openAniBt(newVal)
- },
- popupVIPShow(newVal) {
- this.openAniBt(newVal)
- },
- popup12Show(newVal) {
- this.openAniBt(newVal)
- },
- popupGoldShow(newVal) {
- this.openAniBt(newVal)
- }
- },
- methods: {
- // 是否开始呼吸开关动画
- openAniBt(val) {
- if(val) {
- timer = setInterval(() => {
- if(this.scale === 1) {
- this.scale = 0.92
- }else {
- this.scale = 1
- }
- }, 500)
- } else {
- timer && clearInterval(timer)
- }
- },
- // 开始动画 12 vip 碎片
- startAni(prizeType = 3) {
- if(prizeType === 3 || prizeType === 2) {
- this.prizeType = prizeType
- this.startTsAni(false)
- let index = this.prizeCountDtoList.findIndex(item => item.prizeType === prizeType)
- let left = index !== -1 ? index === 0 ? '150rpx' : '500rpx' : '500rpx'
- this.animation.opacity(1).step({ duration: this.durationMath })
- if( this.durationMath >= 50 ) {
- this.durationMath = 20
- } else {
- this.durationMath = this.durationMath + 1
- }
- this.animation.top('1300rpx').left(left).step({ duration: 1200, delay: 100 })
- this.animation.opacity(0).top('453rpx').left('331rpx').step({ duration: 0 })
- this.animationData = this.animation.export()
- }
- },
- startGold(watchVideos) {
- this.prizeType = 1
- this.startTsAni(watchVideos)
- if( this.durationMath1 >= 50 ) {
- this.durationMath1 = 20
- } else {
- this.durationMath1 = this.durationMath1 + 1
- }
- this.animationDatas = this.goldData.map(item => {
- let animation = uni.createAnimation({ timingFunction: 'ease' })
- animation.opacity(1).step({ duration: this.durationMath1 })
- animation.top('76rpx').left('60rpx').step({ duration: Math.floor(Math.random() * 101) + 1000, delay: 100 }) //
- animation.opacity(0).top(item.top).left(item.left).step({ duration: 0 })
- return animation.export()
- })
- },
- startTsAni(watchVideos) {
- if(this.prizeType === 1) {
- if (watchVideos) {
- this.tsTitle = '+' + (this.luckyDay.prizeCount * 2) + this.luckyDay.prizeName
- } else {
- this.tsTitle = '+' + this.luckyDay.name
- }
- } else {
- this.tsTitle = this.luckyDay.prizeName + '+1'
- }
- if( this.durationMath2 >= 50 ) {
- this.durationMath2 = 20
- } else {
- this.durationMath2 = this.durationMath2 + 1
- }
- let animation = uni.createAnimation({ timingFunction: 'ease' })
- animation.opacity(1).step({ duration: this.durationMath2 })
- animation.top('250rpx').step({ duration: 1000, delay: 100 })
- animation.opacity(0).top('450rpx').step({ duration: 0 })
- this.animationDataTs = animation.export()
- },
- // 再次抽奖
- againLuckDraw(type) {
- if (type === 'vip') {
- this.popupVIPShow = false
- } else if (type === '12') {
- this.popup12Show = false
- } else {
- this.popupGoldShow = false
- }
- this.handleDrawStart()
- },
- // 看视频双倍
- lookVideo() {
- this.receiveGold(true)
- },
- // 领取金币
- receiveGold(watchVideos = false) {
- if(this.doubleKey) {
- setReceive({appId: config.appid, doubleKey: this.doubleKey, openId: this.openId, watchVideos, ...this.mpData }).then(res => {
- this.startGold(watchVideos)
- this.popupShow = false
- this.doubleKey = ""
- this.getList()
- })
- }
- },
- //
- getData() {
- uni.login({
- success: async res => {
- if (res.code) {
- let openIDInfo = await getOpenId({appId: config.appid, code: res.code})
- this.openId = openIDInfo.data
- let response = await this.getList()
- if(response) {
- await this.getPrizeList()
- getBanner({appId: config.appid, openId: this.openId, mpAppId: this.mpData.mpAppId}).then(res => {
- this.list = res.data
- })
- } else {
- this.prizeList = [{"prizeId":1,"name":"100书币","stock":100,"weight":10,"prizeImage":"/static/turntable_golds.png"},{"prizeId":2,"name":"书城VIP碎片","stock":100,"weight":10,"prizeImage":"/static/turntable_VIP.png"},{"prizeId":3,"name":"30书币","stock":100,"weight":10,"prizeImage":"/static/turntable_gold.png"},{"prizeId":4,"name":"书城VIP碎片","stock":100,"weight":10,"prizeImage":"/static/turntable_VIP.png"},{"prizeId":5,"name":"10书币","stock":100,"weight":10,"prizeImage":"/static/turntable_gold.png"},{"prizeId":6,"name":"50书币","stock":100,"weight":10,"prizeImage":"/static/turntable_golds.png"},{"prizeId":7,"name":"iPhone12碎片","stock":100,"weight":10,"prizeImage":"/static/turntable_iPhone12.png"},{"prizeId":8,"name":"20书币","stock":100,"weight":10,"prizeImage":"/static/turntable_gold.png"}]
- this.prizeCountDtoList = [{"prizeType":2,"prizeCount":0,"prizeName":"书城VIP碎片","maxCount":30},{"prizeType":3,"prizeCount":0,"prizeName":"iPhone12碎片","maxCount":50}]
- }
- }
- }
- })
- },
- // 跳转小程序
- jumpSign() {
- let path = 'pages/index/index'
- if(Object.keys(this.mpData).length > 0) {
- path = path + this.getSerialize(this.mpData)
- }
- uni.navigateToMiniProgram({
- appId: 'wxb21c3e030b8af425',
- path,
- success(res) {
- // 打开成功
- }
- })
- },
- // 对象序列化成 a=1&b=2
- getSerialize(value) {
- if(Object.prototype.toString.call(value) === "[object Object]") {
- let path = ""
- for (const key in value) {
- if (Object.prototype.hasOwnProperty.call(value, key)) {
- const element = value[key];
- if (path === "") {
- path = `?${key}=${element}`
- }else {
- path = path + `&${key}=${element}`
- }
- }
- }
- return path
- } else {
- return ""
- }
- },
- // 活动规则
- activityRulesHandle() {
- this.activityRules = !this.activityRules
- },
- // 关闭弹窗
- closeHandle() {
- this.receiveGold(false)
- this.popupShow = false
- },
- // 重新生成
- handleInitCanvas() {
- clearCacheFile()
- this.prizeList = []
- this.getPrizeList()
- },
- // 获取首页信息
- async getList() {
- let res = await getHome({appId: config.appid, openId: this.openId, userSource: 1, ...this.mpData})
- let data = res.data
- if(data) {
- this.userId = data.userId
- this.clearTime = data.clearTime
- this.prizeCountDtoList = data.prizeCountDtoList
- this.mpName = data.mpName
- this.freeNum = data.luckDraw
- this.mpData = {
- mpAppId: data.mpAppId,
- mpName: data.mpName,
- mpOpenId: data.mpOpenId
- }
- return Promise.resolve(true)
- } else {
- return Promise.resolve(false)
- }
- },
- // 获取奖品列表
- async getPrizeList() {
- uni.showLoading({
- title: '奖品准备中...'
- })
- let res = await getPond({appId: config.appid, openId: this.openId, mpAppId: this.mpData.mpAppId})
- if(res.data && res.data.length > 0) {
- this.prizeList = res.data.map(item => {
- let prizeImage = ""
- if (item.prizeType === 1) {
- prizeImage = '/static/turntable_gold.png'
- if(item.prizeCount > 30) {
- prizeImage = '/static/turntable_golds.png'
- }
- return {
- prizeId: item.id,
- name: item.prizeCount + item.prizeName,
- stock: 100,
- weight: 10,
- prizeImage,
- prizeType: item.prizeType,
- prizeCount: item.prizeCount,
- prizeName: item.prizeName,
- }
- } else {
- prizeImage = '/static/turntable_iPhone12.png'
- if(item.prizeType === 2){
- prizeImage = '/static/turntable_VIP.png'
- }
- return {
- prizeId: item.id,
- name: item.prizeName,
- stock: 100,
- weight: 10,
- prizeImage,
- prizeType: item.prizeType,
- prizeCount: item.prizeCount,
- prizeName: item.prizeName,
- }
- }
- })
- }else {
- uni.hideLoading()
- uni.showToast({
- title: '获取奖品失败'
- })
- }
- },
- // 本次抽奖开始
- handleDrawStart() {
- console.log('触发抽奖按钮')
- if (!this.mpName) { // 首次没有重公众号进入
- uni.navigateTo({
- url: '../officialAccount/officialAccount'
- })
- return
- }
- if (this.prizeing) return
- this.prizeing = true
-
- // 还有免费数次或者剩余金币足够抽一次
- if (this.freeNum > 0) {
- // 更新免费次数或金币余额
- if (this.freeNum > 0) {
- this.freeNum--
- }
- // 发起抽奖
- this.remoteGetPrizeIndex()
- } else {
- this.prizeing = false
- uni.showToast({
- title: '抽奖次数不足',
- icon:'none'
- })
- }
- },
- // 远程请求接口获取中奖下标
- remoteGetPrizeIndex() {
- console.warn('###当前处于模拟的请求接口,并返回了中奖信息###')
- let { mpName, ...mp } = this.mpData
- setDrawGain({appId: config.appid, openId: this.openId, ...mp}).then(res => {
- let data = res.data
- this.doubleKey = data.doubleKey
- let prizeIndex = this.prizeList.findIndex(item => item.prizeId === data.id)
- if(prizeIndex !== -1){
- this.prizeIndex = prizeIndex
- } else {
- uni.showToast({
- title: '抽奖异常,请稍后重试'
- })
- }
- })
- },
- // 本次抽奖结束
- handleDrawEnd() {
- console.log('旋转结束,执行拿到结果后到逻辑')
- // 旋转结束后,开始处理拿到结果后的逻辑
- this.prizeing = false
- let prizeName = this.prizeList[this.prizeIndex].name
- let { prizeType, prizeCount } = this.prizeList[this.prizeIndex]
- this.luckyDay = this.prizeList[this.prizeIndex]
- let tipContent = ''
- if (prizeName === '谢谢参与') {
- tipContent = '很遗憾,没有中奖,请再接再厉!'
- } else if (prizeName.indexOf('碎片') === -1 && this.freeNum >= 8) {
- this.popupShow = true
- return
- } else {
- // 如果奖品设有库存
- if (this.onStock) {
- let prizeStock = this.prizeList[this.prizeIndex].stock
- tipContent = prizeStock ? `恭喜您,获得 ${prizeName}` : `很抱歉,您来晚了,当前奖品 ${prizeName} 已无库存`
- } else {
- if (prizeType === 1) {
- this.popupGoldShow = true
- } else if (prizeType === 2) {
- this.popupVIPShow = true
- } else if (prizeType === 3) {
- this.popup12Show = true
- }
- }
- }
- this.getList()
- },
- // 抽奖转盘绘制完成
- handleDrawFinish(res) {
- console.log('抽奖转盘绘制完成', res)
- uni.showToast({
- title: res.msg,
- duration: 800,
- mask: true,
- icon: 'none'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #F0524C;
- }
- .luckyDraw {
- position: relative;
- &>.back {
- width: 100%;
- }
- }
-
- .luckyDrawContent {
- overflow-x: hidden;
- position: absolute;
- top: 0;
- width: 100%;
- padding: 40rpx 0;
- margin-bottom: 20rpx;
- font-family: PingFangSC-Medium, PingFang SC;
-
- // 用户信息
- .luckyDrawTop {
- padding: 0 28rpx;
- height: 104rpx;
- display: flex;
-
- justify-content: space-between;
- align-items: center;
- .left{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- &>.avatarView {
- overflow: hidden;
- width: 104rpx;
- height: 104rpx;
- background: #D8D8D8;
- border-radius: 10px;
- }
-
- .userInfo{
- margin-left: 28rpx;
- &>view{
- font-size: 32rpx;
- font-weight: 500;
- color: #FFFFFF;
-
- &.account {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- &>image {
- width: 36rpx;
- height: 36rpx;
- margin-right: 10rpx;
- }
- }
-
- &.ID{
- margin-top: 4rpx;
- }
- }
- }
- }
- .right{
- width: 212rpx;
- height: 76rpx;
- background: #FEC435;
- border-radius: 40rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- &>text {
- font-size: 28rpx;
- font-weight: 400;
- color: #FFFFFF;
- margin-left: 18rpx;
- }
- }
- }
-
- // 滚动通知
- .notice {
- width: 656rpx;
- height: 68rpx;
- background: #C7322C;
- box-shadow: 0px 4rpx 8rpx 0rpx rgba(49, 49, 49, 0.08);
- border-radius: 38rpx;
- opacity: 0.53;
- margin: 58rpx auto 0;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .horn {
- width: 28rpx;
- height: 28rpx;
- }
- .txts {
- // flex: 1;
- height: 68rpx;
- width: 600rpx;
- }
- }
-
- // 大转盘
- .turntable {
- position: relative;
- margin-top: 40rpx;
- .decorate{
- position: relative;
- width: 100%;
- height: 890rpx;
- &>image {
- width: 100%;
- position: absolute;
- z-index: 10;
-
- &.decorateBack {
- top: 0;
- }
- &.decorateChassis{
- position: absolute;
- z-index: 1;
- bottom: 0;
- }
- }
- }
-
- .turntableContent {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- z-index: 20;
- padding-top: 20rpx;
-
- .bottom {
- margin-top: 20rpx;
- text-align: center;
- position: absolute;
- bottom: 35rpx;
- left: 50%;
- transform: translateX(-50%);
- .cont{
- font-size: 28rpx;
- font-weight: 400;
- color: #FFFFFF;
- margin-bottom: 22rpx;
- text {
- font-size: 36rpx;
- color: #FEED22;
- font-weight: 500;
- }
- }
- .record{
- font-size: 28rpx;
- font-weight: 500;
- color: #FFFFFF;
- }
- }
- }
- }
-
- // 我的奖品
- .myPrize {
- margin: 40rpx 26rpx 0;
- min-height: 352rpx;
- background: #F4E2CA;
- border-radius: 20rpx;
- position: relative;
- padding: 58rpx 0 20rpx;
- .title {
- position: absolute;
- width: 232rpx;
- height: 64rpx;
- background: linear-gradient(180deg, #FFEDD1 0%, #FFC954 100%);
- box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.07);
- border-radius: 0 0 24rpx 24rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #F33938;
- text-align: center;
- line-height: 64rpx;
- left: 50%;
- transform: translateX(-50%);
- top: -12rpx;
- }
- .chips {
- display: flex;
- justify-content: space-between;
- }
- .chip {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 50%;
- &>image {
- width: 208rpx;
- height: 160rpx;
- }
- .text{
- font-size: 32rpx;
- font-weight: 500;
- color: #F33938;
- line-height: 44rpx;
- margin-top: 12rpx;
- }
- .progress{
- position: relative;
- width: 200rpx;
- height: 40rpx;
- margin-top: 12rpx;
- background: #FFFCF7;
- border-radius: 26rpx;
- overflow: hidden;
- .value{
- position: absolute;
- width: 1%;
- height: 100%;
- top: 0;
- left: 0;
- z-index: 1;
- background: #F37938;
- }
- &>text {
- font-size: 28rpx;
- font-weight: 500;
- color: #333333;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 2;
- }
- }
- }
- .clearTime{
- margin: 20rpx 0 0;
- text-align: center;
- font-size: 24rpx;
- font-weight: 400;
- color: #F33938;
- }
- }
-
- // 活动规则
- .activityRules {
- margin: 40rpx 28rpx 0;
- background: #F4E2CA;
- border-radius: 20rpx;
- color: #F33938;
- font-size: 32rpx;
- font-weight: 400;
- &>.top {
- height: 92rpx;
- padding: 0 28rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- &>image {
- width: 40rpx;
- }
- }
- &>.bottom {
- padding: 0 28rpx 30rpx;
- box-sizing: border-box;
-
- &> view {
- margin-bottom: 12rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #666666;
- line-height: 46rpx;
- }
- }
- }
-
- // 弹窗
- .popup {
- position: fixed;
- width: 100%;
- height: 100vh;
- background: rgba(0, 0, 0, 0.6);
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 100;
- .popupContent {
- width: 632rpx;
-
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- text-align: center;
- &>.content {
- position: relative;
- &>image {
- width: 100%;
- height: 652rpx;
- }
- &>.textCon {
- position: absolute;
- width: 100%;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- padding-top: 192rpx;
- .ts {
- font-size: 60rpx;
- font-weight: 500;
- color: #F5631D;
- }
-
- .reward {
- height: 60rpx;
- // background: #FFD9A2;
- // border-radius: 31rpx;
- font-size: 50rpx;
- font-weight: 400;
- display: inline-block;
- padding: 0 32rpx;
- color: #F5631E;
- line-height: 60rpx;
- margin-top: 20rpx;
- }
-
- .goldText {
- font-size: 64rpx;
- font-family: FZZZHONGJW--GB1-0, FZZZHONGJW--GB1;
- font-weight: normal;
- color: #FFFFFF;
- margin-bottom: 25rpx;
- transform: translateX(12rpx);
- }
-
- .doubleBt {
- width: 456rpx;
- height: 104rpx;
- margin-top: 90rpx;
- transition: all linear .5s;
- }
-
- .bt {
- margin-top: 14rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #FCE8CD;
- }
-
- .againLuckDrawBt {
- width: 424rpx;
- height: 86rpx;
- background: linear-gradient(180deg, #FDDEA5 0%, #FFC981 75%, #FFC983 100%);
- border-radius: 43rpx;
- font-size: 36rpx;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #854007;
- text-align: center;
- line-height: 86rpx;
- margin: 0 auto 40rpx;
- transition: all linear .5s;
- }
- .btGold {
- width: 448rpx;
- height: 104rpx;
- border-radius: 52rpx;
- line-height: 104rpx;
- font-size: 40rpx;
- box-shadow: 0px 2rpx 8rpx 4rpx rgba(183, 2, 2, 0.37);
- background: linear-gradient(180deg, #FFFCBE 0%, #F87527 100%);
- }
- .btVip {
- width: 426rpx;
- height: 88rpx;
- background: linear-gradient(180deg, #F6E5CA 0%, #EDC388 100%);
- box-shadow: 0rpx 6rpx 16rpx 0rpx rgba(162, 58, 20, 0.77);
- border-radius: 44rpx;
- }
- }
- }
- &>.close {
- width: 54rpx;
- height: 54rpx;
- margin-top: 76rpx;
- }
- }
- }
-
- // 碎片飞行初始样式 // 金币飞行
- .fragmentAni, .fragmentGold {
- position: absolute;
- z-index: 100;
- top: 453rpx;
- left: 330rpx;
- opacity: 0;
- &>image {
- width: 100rpx;
- height: 100rpx;
- }
- }
- .fragmentGold {
- // opacity: 1;
- }
-
- .receiveTs {
- position: absolute;
- border: 2rpx solid rgb(242, 69, 69);
- top: 450rpx;
- z-index: 100;
- color: #FFFFFF;
- left: 50%;
- transform: translateX(-50%);
- padding: 10rpx 20rpx;
- background-color: rgba(131, 37, 37, 0.6);
- border-radius: 5rpx;
- opacity: 0;
- }
- }
- </style>
|