123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <!-- 老虎机 -->
- <template>
- <div v-if="prizes?.length">
- <SlotMachine
- ref="myLucky"
- width="300px"
- :height="height + 'px'"
- :prizes="prizes"
- :blocks="blocks"
- :slots="slots"
- accelerationTime="1000"
- decelerationTime="10000"
- :default-config="defaultConfig"
- class="prizeDraw"
- @start="startCallback"
- @end="endCallback"
- />
- <v-img
- v-if="!disabled"
- class="cursor-pointer"
- src="https://img1.baidu.com/it/u=3949019928,2138080900&fm=253&fmt=auto&app=138&f=PNG?w=300&h=300"
- :width="100"
- style="margin: 0 auto;"
- @click="startCallback"
- />
- </div>
- </template>
- <script setup>
- defineOptions({name: 'prizeDraw-LuckyGrid'})
- import { getPrizeByLotteryId } from '@/api/mall/prize'
- // import Snackbar from '@/plugins/snackbar'
- import { ref } from 'vue'
- const emit = defineEmits(['start', 'end'])
- const props = defineProps({ lotteryId: [Number, String], height: [Number, String], disabled: Boolean })
- const myLucky = ref()
- // 背景样式
- const blocks = [
- { padding: '10px', background: '#00B760', borderRadius: 6 },
- ]
- // 转速与方向
- const slots = [
- { speed: 15, direction: -1 },
- { speed: 15, direction: 1 },
- { speed: 15, direction: -1 },
- ]
- const prizes = ref([])
- const defaultConfig = {
- rowSpacing: '10px',
- colSpacing: '10px',
- accelerationTime: 1000, // 开始旋转时间
- decelerationTime: 3000, // 缓慢停止时间
- }
- // 根据活动id获取奖品列表
- const getPrizeData = async (lotteryId) => {
- let id = lotteryId || props.lotteryId
- const data = await getPrizeByLotteryId(id)
- prizes.value = []
- data.forEach(item => {
- prizes.value.push({
- prize: item,
- background: '#fe920200',
- borderRadius: '10px',
- imgs: [{
- width: '100%',
- top: '0%',
- src: item.image
- }]
- })
- })
- }
- if (props.lotteryId) getPrizeData()
- const startCallback = () => {
- // if (props.disabled) return Snackbar.warning('您已经参与过该抽奖活动了哦')
- emit('start')
- // 调用抽奖组件的play方法开始游戏
- myLucky.value.play()
- // 模拟调用接口异步抽奖
- setTimeout(() => {
- const index = 3
- // 调用stop停止旋转并传递中奖索引
- myLucky.value.stop(index)
- }, 1500)
- }
- const endCallback = (value) => {
- emit('end', value)
- }
- </script>
- <style lang="scss" scoped>
- </style>
|