inleft
2022-08-26 fa1bd95d533444d7360d1ada127b7a3279a3901f
commit | author | age
ad2b70 1 <template>
L 2     <div class="blog-main">
3         <a-row>
4             <a-col v-bind="colApiLeft">
6461f5 5                 <box7 :searchType="searchType" class="fade" > </box7>
ad2b70 6             </a-col>
aab811 7             <a-col v-bind="colApiMain" class="holdHeight">
56fe69 8                 <!-- <box8></box8> -->
56a4b8 9                 <!-- <boxLeft></boxLeft> -->
859ec7 10                 <!-- <myVideo v-on="$listeners"></myVideo> -->
I 11                 <keep-alive>
12                     <router-view v-on="$listeners"></router-view>
13                 </keep-alive>
ad2b70 14             </a-col>
15bd39 15
ad2b70 16         </a-row>
L 17     </div>
18 </template>
19
20 <script>
41b36f 21     import box7 from "../mini/box7-search.vue"
I 22     import box8 from "../mini/box8-panal.vue"
56fe69 23     import myVideo from "../mini/box14-video.vue"
41b36f 24     import boxLeft from "../group/boxLeft.vue"
146176 25
ad2b70 26     export default {
L 27         components: {
41b36f 28             box7,
I 29             box8,
ad2b70 30             boxLeft,
56fe69 31             myVideo,
ad2b70 32         },
L 33
34         data() {
35             return {
38a800 36                 searchType: "月台搜索",
ad2b70 37                 colApiLeft: {
L 38                     xs: 24,
aab811 39                     sm: {
146176 40                         span: 14,
I 41                         offset: 5,
aab811 42                     },
I 43                     md: {
44                         span: 14,
45                         offset: 5,
46                     },
47                     lg: {
48                         span: 10,
49                         offset: 7,
50                     },
51                     xl: {
52                         span: 6,
53                         offset: 1,
54                     },
55                     xxl: {
56                         span: 5,
57                         offset: 1,
58                     },
59                 },
15bd39 60
aab811 61                 colApiMain: {
I 62                     xs: {
859ec7 63                         span: 22,
I 64                         offset: 1,
aab811 65                     },
I 66                     sm: {
67                         span: 22,
146176 68                         offset: 1,
aab811 69                     },
I 70                     md: {
146176 71                         span: 22,
I 72                         offset: 1,
aab811 73                     },
I 74                     lg: {
75                         span: 22,
146176 76                         offset: 1,
aab811 77                     },
I 78                     xl: {
146176 79                         span: 16,
I 80                         offset: 1,
aab811 81                     },
I 82                     xxl: {
146176 83                         span: 16,
I 84                         offset: 1,
aab811 85                     },
ad2b70 86                 }
L 87             }
88         }
89     }
90 </script>
91
146176 92 <style>
ad2b70 93 </style>