123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- <template>
- <view class="container">
- <view class="top flex">
- <view class="icon1 flex">
- <image class="img margin-r-10" src="../../static/shouye/shouye1.png" mode="scaleToFill"></image>
- <text class="tet">{{$t('login.a0')}}</text>
- </view>
- <view class="flex">
- <view class="icon2 text clamp margin-r-10">
- {{userInfo.account||'链接钱包'}}
- </view>
- <view class="icon1 margin-r-10">
- <image class="langTip" src="../../static/shouye/shouye2.png" mode="scaleToFill"></image>
- </view>
- <view class="text1 margin-r-10">
- <picker :range="langList" range-key='label' @change="selectLang">
- <view>{{label}}</view>
- </picker>
- </view>
- <view class="icon1">
- <image class="langTipDom" src="../../static/shouye/shouye3.png" mode="scaleToFill"></image>
- </view>
- </view>
- </view>
- <view class="flex item">
- <view class="item-style flex" v-for="(item,ind) in gameList"
- @click="openurl(`/pages/index/entertainment?title=${item.name}&id=${item.id}`)">
- <image class="item-tip" :src="`../../static/shouye/index_item_${ind+1}.png`" mode="scaleToFill">
- </image>
- <view class="name">
- {{item.name}}
- </view>
- <view class="item-next flex-center">
- <image src="../../static/img/zhiya1.png" mode="widthFix" class="next-img"></image>
- </view>
- </view>
- </view>
- <view class="flex shop-detail-data">
- <view class="data-list">
- <view class="num-box">
- <text>{{active_user}}</text><text class="num-tip">+</text>
- </view>
- <view class="name">
- {{$t('homepledge.活跃用户')}}
- </view>
- </view>
- <view class="data-list">
- <view class="num-box">
- <text>1000000</text><text class="num-tip">+</text>
- </view>
- <view class="name">
- {{$t('homepledge.累计返奖')}}
- </view>
- </view>
- <view class="data-list">
- <view class="num-box">
- <text>10000</text><text class="num-tip">+</text>
- </view>
- <view class="name">
- {{$t('homepledge.总用户')}}
- </view>
- </view>
- </view>
- <view class="title">
- {{$t('homepledge.游戏流程')}}
- </view>
- <image class="conetnt-img" src="../../static/shouye/index-content.png" mode="widthFix"></image>
- <view class="title">
- {{$t('homepledge.合作伙伴')}}
- </view>
- <image class="conetnt-img" src="../../static/shouye/index-bottom.png" mode="widthFix"></image>
- <taber tab='index'></taber>
- </view>
- </template>
- <script>
- import {
- getIndex
- } from '@/api/index.js';
- import {
- getGameList,
- } from "@/api/game.js";
- import {
- mapState,
- mapActions,
- mapMutations
- } from "vuex";
- import taber from "@/components/footer/footer.vue";
- export default {
- components: {
- taber
- },
- data() {
- return {
- gameList: [],
- active_user: '0'
- }
- },
- computed: {
- ...mapState({
- langList: "langList",
- lang: "lang",
- }),
- ...mapState('user', ['userInfo']),
- label() {
- const label = this.langList.find((item) => {
- console.log(this.lang, item.value);
- return item.value == this.lang
- }).label;
- return label
- }
- },
- onLoad(option) {
- // #ifndef MP
- if (option.spread) {
- // 存储其他邀请人
- uni.setStorageSync('spread', option.spread);
- }
- // #endif
- // #ifdef MP
- if (option.scene) {
- // 存储小程序邀请人
- uni.setStorage({
- key: 'spread_code',
- data: option.scene
- });
- }
- // #endif
- },
- onShow() {
- this.getGameList();
- this.loadData();
- },
- methods: {
- ...mapMutations('user', ['setUserInfo', 'login']),
- ...mapActions({
- setLang: "setLang",
- }),
- openurl(url){
- uni.navigateTo({
- url: url,
- fail: (err) => {
- uni.showModal({
- title: '错误',
- content: err,
- showCancel: false,
- });
- }
- });
- },
- // 请求载入数据
- async loadData() {
- getIndex({})
- .then(({
- data
- }) => {
- this.active_user = data.active_user
- console.log(data);
- })
- .catch(e => {});
- },
- selectLang(value) {
- this.setLang(this.langList[value.detail.value].value);
- },
- getGameList() {
- getGameList().then((res) => {
- this.gameList = res.data.list;
- if (this.gameList.length > 2) {
- this.gameList = this.gameList.slice(0, 2)
- }
- })
- },
- },
- }
- </script>
- <style lang="scss">
- .container {
- width: 100%;
- background-color: #000000;
- padding-top: var(--status-bar-height);
- }
- .title {
- color: $base-color;
- text-align: center;
- font-size: 58rpx;
- }
- .item {
- padding: 30rpx;
- .item-style {
- border-radius: 20rpx;
- width: 320rpx;
- padding: 30rpx 0;
- background-color: #191A1F;
- flex-direction: column;
- color: #FFFFFF;
- font-size: 38rpx;
- .item-tip {
- width: 209rpx;
- height: 209rpx;
- }
- .name {
- font-weight: bold;
- }
- .item-next {
- margin-top: 20rpx;
- width: 34rpx;
- height: 34rpx;
- border-radius: 20rpx;
- background-color: $color-yellow;
- font-size: 0;
- .next-img {
- width: 10rpx;
- }
- }
- }
- }
- .shop-detail-data {
- padding: 50rpx 30rpx;
- .data-list {
- text-align: center;
- .num-box {
- color: #FFF;
- font-size: 40rpx;
- font-weight: bold;
- .num-tip {
- font-size: $font-lg;
- color: $color-yellow;
- }
- }
- .name {
- font-size: $font-sm;
- color: $font-color-disabled;
- }
- }
- }
- .conetnt-img {
- width: 690rpx;
- margin: 30rpx;
- margin-top: 50rpx;
- }
- .top {
- font-weight: 500;
- padding: 40rpx 30rpx 24rpx 30rpx;
- line-height: 1;
- .icon1 {
- line-height: 0;
- .img {
- width: 47rpx;
- height: 47rpx;
- }
- .tet {
- font-size: 28rpx;
- color: #C3A76C;
- }
- }
- .icon2 {
- background: #292C3D;
- border: 2px solid #414243;
- border-radius: 21rpx;
- }
- .langTip {
- width: 34rpx;
- height: 34rpx;
- }
- .langTipDom {
- width: 23rpx;
- height: 15rpx;
- }
- .text {
- font-size: 24rpx;
- color: #FFFFFF;
- padding: 10rpx 20rpx;
- max-width: 200rpx;
- }
- .text1 {
- font-size: 24rpx;
- color: #FFFFFF;
- }
- }
- </style>
|