inleft
2022-03-01 a71b6416b467cd3b2ec24efd68accc85223e8a3b
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
<template>
    <div class="blog-main">
        <a-row>
            <a-col v-bind="colApiMain " class="holdHeight">
                <a-page-header title="我的网盘" style="padding: 0px;" @back="() => this.$router.go(-1)" />
                <net-file></net-file>
                <!-- <myVideo></myVideo> -->
            </a-col>
        </a-row>
    </div>
</template>
 
<script>
    import netFile from "../mini/box9-netFile.vue"
    import myVideo from "../mini/box14-video.vue"
    export default {
        components: {
            netFile,
            myVideo,
        },
 
        data() {
            return {
                colApiMain: {
                    xs: 24,
                    sm: 24,
                    md: {
                        span: 24,
                        offset: 0,
                    },
                    lg: {
                        span: 20,
                        offset: 2,
                    },
                    xl: {
                        span: 20,
                        offset: 2,
                    },
                    xxl: {
                        span: 20,
                        offset: 2,
                    },
                }
            }
        }
    }
</script>
 
<style lang="less">
 
</style>