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.
64 lines
967 B
64 lines
967 B
<template>
|
|
<view class="">
|
|
<balance></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/navigation/navigation.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
goColor(){
|
|
uni.navigateTo({
|
|
url:'../color/color1/index'
|
|
})
|
|
},
|
|
getBanner() {
|
|
const banner = api.banner(param)
|
|
banner.then(d => {
|
|
console.log(d)
|
|
this.info = d.data
|
|
})
|
|
.catch((e) => {
|
|
console.log(e)
|
|
})
|
|
},
|
|
getPicsCate(){
|
|
uni.request({
|
|
url:"https://apitest.luck-work.com/uc",
|
|
success(res){
|
|
console.log(res);
|
|
}
|
|
})
|
|
|
|
},
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
|
|
|
|
</style>
|
|
|