ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
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
<template>
    <div class="home-page">
        <div class="pannel page-pannel1">
            <module-a />
        </div>
        <el-row  class="page-pannel-row page-pannel-row2">
            <el-col :span="14" class="padding-col">
                <div class="pannel page-pannel-full">
                    <module-b />
                </div>
            </el-col>
            <el-col :span="10">
                <div class="pannel page-pannel-full">
                    <module-c />
                </div>
            </el-col>
        </el-row>
        <el-row class="page-pannel-row3">
            <el-col :span="14" class="padding-col">
                <div class="pannel page-pannel-full">
                    <module-d />
                </div>
            </el-col>
            <el-col :span="10">
                <div class="pannel page-pannel-full">
                    <module-e />
                </div>
            </el-col>
        </el-row>
    </div>
</template>
 
<script>
import * as echarts from 'echarts';
import ModuleA from './compontents/ModuleA.vue'
import ModuleB from './compontents/ModuleB.vue'
import ModuleC from './compontents/ModuleC.vue'
import ModuleD from './compontents/ModuleD.vue'
import ModuleE from './compontents/ModuleE.vue'
export default {
    name:'homePage',
    components:{ModuleA,ModuleB,ModuleC,ModuleD,ModuleE},
    provide: {
        echarts: echarts
    },
    mounted() {
        
    }
}
</script>
 
<style scoped lang="scss">
.home-page{
    .pannel{
        background-color: #FFFFFF;
        border-radius: 6px;
    }
    .page-pannel1{
        margin-bottom: 16px;
        min-height: 198px;
    }
    .page-pannel-row{
        margin-bottom: 16px;
    }
    .page-pannel-row2{
        height: 443px;
    }
    .page-pannel-full{
        height: 100%;
    }
}
.el-col.padding-col{
    padding-right: 16px;
}
</style>
<style lang="scss">
.home-page{
    .pannel-title{
        color: #7b7b7b;
        font-size: 18px;
        font-weight: bold;
    }
}
</style>