home.vue
827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template>
<div class="main">
<el-row class="w100">
<el-col :span="8">
<left-page/>
</el-col>
<el-col :span="8">
<center-page/>
</el-col>
<el-col :span="8">
<right-page/>
</el-col>
</el-row>
</div>
</template>
<script setup>
import LeftPage from "@/viewsPc/vip/leftPage"
import CenterPage from "@/viewsPc/vip/centerPage"
import RightPage from "@/viewsPc/vip/rightPage"
import {getYS000} from '@/api/server.js'
const fullUrl = window.location.href;
const type = ref(null)
// url.value = window.location.host + '/pc.html#/match/list/'
handelGetYS000()
console.log(window.location.host)
async function handelGetYS000() {
const res = await getYS000()
type.value = res.data.IFBASE
console.log(res)
}
</script>
<style lang="scss" scoped>
</style>