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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
| <template>
| <div class="blog-main">
| <a-row>
| <a-col v-bind="colApiLeft">
| <box7 :searchType="searchType" class="fade" > </box7>
| </a-col>
| <a-col v-bind="colApiMain" class="holdHeight">
| <!-- <box8></box8> -->
| <!-- <boxLeft></boxLeft> -->
| <!-- <myVideo v-on="$listeners"></myVideo> -->
| <keep-alive>
| <router-view v-on="$listeners"></router-view>
| </keep-alive>
| </a-col>
|
| </a-row>
| </div>
| </template>
|
| <script>
| import box7 from "../mini/box7-search.vue"
| import box8 from "../mini/box8-panal.vue"
| import myVideo from "../mini/box14-video.vue"
| import boxLeft from "../group/boxLeft.vue"
|
| export default {
| components: {
| box7,
| box8,
| boxLeft,
| myVideo,
| },
|
| data() {
| return {
| searchType: "视频/乐谱 搜索",
| colApiLeft: {
| xs: 24,
| sm: {
| span: 14,
| offset: 5,
| },
| md: {
| span: 14,
| offset: 5,
| },
| lg: {
| span: 10,
| offset: 7,
| },
| xl: {
| span: 6,
| offset: 1,
| },
| xxl: {
| span: 5,
| offset: 1,
| },
| },
|
| colApiMain: {
| xs: {
| span: 22,
| offset: 1,
| },
| sm: {
| span: 22,
| offset: 1,
| },
| md: {
| span: 22,
| offset: 1,
| },
| lg: {
| span: 22,
| offset: 1,
| },
| xl: {
| span: 16,
| offset: 1,
| },
| xxl: {
| span: 16,
| offset: 1,
| },
| }
| }
| }
| }
| </script>
|
| <style>
| </style>
|
|