inleft
2022-03-07 56fe690507efc7e47f3b83e4e2095afa1ccf1439
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
<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></myVideo>
            </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: 10,
                        offset: 1,
                    },
                    md: {
                        span: 14,
                        offset: 5,
                    },
                    lg: {
                        span: 10,
                        offset: 7,
                    },
                    xl: {
                        span: 6,
                        offset: 1,
                    },
                    xxl: {
                        span: 5,
                        offset: 1,
                    },
                },
 
                colApiMain: {
                    xs: {
                        span: 23,
                        offset: 1,
                    },
                    sm: {
                        span: 22,
                        offset: 2,
                    },
                    md: {
                        span: 19,
                        offset: 5,
                    },
                    lg: {
                        span: 22,
                        offset: 2,
                    },
                    xl: {
                        span: 15,
                        offset: 2,
                    },
                    xxl: {
                        span: 15,
                        offset: 2,
                    },
                }
            }
        }
    }
</script>
 
<style >
</style>