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.
49 lines
733 B
49 lines
733 B
<template>
|
|
<view class="">
|
|
<balance @send="getSonValue"></balance>
|
|
<view class="index-body">
|
|
<view class="index-body-p1">
|
|
Game
|
|
</view>
|
|
<view class="index-body-img" @click="goColor">
|
|
<image src="../../../static/home/[email protected]" mode=""></image>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import Vue from 'vue';
|
|
import balance from "@/components/balance/balance.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
getSonValue(){
|
|
uni.reLaunch({
|
|
url:'../recharge/index'
|
|
})
|
|
},
|
|
|
|
goColor(){
|
|
uni.reLaunch({
|
|
url:'../color/index'
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
|
|
|
|
</style>
|
|
|