i
This commit is contained in:
@@ -1,36 +1,53 @@
|
||||
<template>
|
||||
<view class="index">
|
||||
<swiper
|
||||
class='swiper'
|
||||
:circular="true"
|
||||
:autoplay="true"
|
||||
>
|
||||
<swiper-item v-for="(item,index) in list" :key="index">
|
||||
<image :src="item"/>
|
||||
<swiper class="swiper" :circular="true" :autoplay="true">
|
||||
<swiper-item v-for="(item, index) in list" :key="index">
|
||||
<image :src="item" />
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
<view class="container">
|
||||
<view>摇骰子</view>
|
||||
<!-- <view>摇骰子</view> -->
|
||||
<view>游戏介绍</view>
|
||||
<view>。。。。。。。。。。</view>
|
||||
<view>游戏简介</view>
|
||||
<view>。。。。。。。。。。</view>
|
||||
<view class="text">
|
||||
<view>用户需要购买平台促销商品获得游戏豆;</view>
|
||||
<view>竞猜游戏消耗游戏豆;</view>
|
||||
<view>游戏积分作为竞猜奖品;</view>
|
||||
<view>竞猜限制: 用户进行竞猜,大小两格限制20000/格,其它限制5000/格;</view>
|
||||
<view>活动时间: 我们将在活动页面提示活动时间;</view>
|
||||
</view>
|
||||
|
||||
<view>骰子竞猜规则</view>
|
||||
<view class="text">
|
||||
<view
|
||||
>竞猜方式:
|
||||
参与者需要在规定时间内,提交自己的竞猜范围,参与者需要预测两个骰子相加的点数或大、小范围,请确保你的预测在正确范围内;</view
|
||||
>
|
||||
<view
|
||||
>结算方式:
|
||||
我们将根据所有参与者的猜测结果进行统计和比对,找出与实际骰子点数相同的预测,实时开奖,发送奖励;</view
|
||||
>
|
||||
<view
|
||||
>奖励机制:
|
||||
奖励将根据活动参与人竞猜游戏豆数额做结算,将以游戏积分方式发放给猜中相同开奖点数的的幸运者;</view
|
||||
>
|
||||
</view>
|
||||
<view class="btn" @click="startGame()">开始游戏</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import {ref} from 'vue'
|
||||
import Taro from '@tarojs/taro'
|
||||
import './index.scss'
|
||||
|
||||
const list = ref(['https://storage.360buyimg.com/jdc-article/NutUItaro34.jpg', 'https://storage.360buyimg.com/jdc-article/NutUItaro2.jpg', 'https://storage.360buyimg.com/jdc-article/welcomenutui.jpg', 'https://storage.360buyimg.com/jdc-article/fristfabu.jpg'])
|
||||
import { ref } from "vue";
|
||||
import Taro from "@tarojs/taro";
|
||||
import "./index.scss";
|
||||
|
||||
const list = ref([
|
||||
"https://files.wanzhuanyongcheng.com/file/img/yaotouzi/banner/qietu.png",
|
||||
]);
|
||||
|
||||
const startGame = () => {
|
||||
Taro.navigateTo({
|
||||
url: '/pages/yaotouzi/index/index'
|
||||
})
|
||||
}
|
||||
url: "/pages/yaotouzi/index/index",
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user