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
| <template>
| <div class="blog-main">
| <a-row>
| <a-col v-bind="colApiLeft">
| <box7 :searchType="searchType"></box7>
| </a-col>
| <a-col v-bind="colApiMain ">
| <box8></box8>
| <!-- <boxLeft></boxLeft> -->
| </a-col>
| <a-col v-bind="colApiRight">
| </a-col>
| </a-row>
| </div>
| </template>
|
| <script>
| import box7 from "../mini/box7-search.vue"
| import box8 from "../mini/box8-panal.vue"
| import boxLeft from "../group/boxLeft.vue"
| export default {
| components: {
| box7,
| box8,
| boxLeft,
| },
|
| data() {
| return {
| searchType:"乐谱搜索",
| colApiLeft: {
| xs: 0,
| sm: 0,
| md: 0,
| lg: 8,
| xl: 8,
| xxl: 6,
| },
| colApiRight: {
| xs: 0,
| sm: 0,
| md: 0,
| lg: 0,
| xl: 0,
| xxl: 4,
| },
| colApiMain: {
| xs: 24,
| sm: 24,
| md: 24,
| lg: 14,
| xl: 14,
| xxl: 14,
| }
| }
| }
| }
| </script>
|
| <style lang="less">
|
| </style>
|
|