校园-江西科技师范大学-前端
shuishen
2023-12-14 e733164e1c779b3aef7245936b9daf7875bf791e
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<template>
    <div class="page">
        <div class="screen-container">
            <div class="header">
                <Header></Header>
            </div>
            <div class="screen-body">
                <section class="screen_left">
                    <div class="left_top">
                        <SchoolInfor></SchoolInfor>
                    </div>
                    <div class="left_middle">
                        <PipeNetCont></PipeNetCont>
                    </div>
                    <div class="left_bottom">
                        <BuildingCost></BuildingCost>
                    </div>
                </section>
                <section class="screen_middle">
                    <div class="middle_top">
                        <Map></Map>
                    </div>
                    <div class="middle_bottom">
                        <AlertInfo></AlertInfo>
                    </div>
                </section>
                <section class="screen_right">
                    <div class="right_top">
                        <SchoolCostCompare></SchoolCostCompare>
                    </div>
                    <div class="right_middle">
                        <PipeWellPercent></PipeWellPercent>
                    </div>
                    <div class="right_bottom">
                        <Devices></Devices>
                    </div>
                </section>
            </div>
        </div>
    </div>
</template>
 
<script>
import Header from './Header'
import SchoolInfor from './SchoolInfo'
import PipeNetCont from './PipeNetCount'
import BuildingCost from './BuildingCost'
import Map from './Map'
import SchoolCostCompare from './SchoolCostCompare'
import PipeWellPercent from './PipeWellPercent'
import Devices from './Devices'
import AlertInfo from './AlertInfo'
export default {
    components: {
        Header,
        SchoolInfor,
        PipeNetCont,
        BuildingCost,
        Map,
        SchoolCostCompare,
        PipeWellPercent,
        Devices,
        AlertInfo
    },
    created () {
        document.title = '智慧校园可视化信息管理平台'
    }
}
</script>
 
<style lang="scss" scoped>
.page {
    width: 100%;
    height: 100%;
    position: relative;
    background: url(/img/login/background.png);
    background-size: 100% auto;
}
 
.screen-container {
    width: 100%;
    height: 100%;
 
    padding: 0 30px;
    box-sizing: border-box;
 
    .header {
        height: 100px;
    }
 
    .screen-body {
        width: 100%;
        height: calc(100% - 140px);
        display: flex;
        margin-top: 20px;
 
        .screen_left {
            height: 100%;
            width: 21.5%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
 
            .left_top {
                width: 100%;
                height: 28%;
            }
 
            .left_middle {
                width: 100%;
                height: 32%;
                margin-top: 20px;
            }
 
            .left_bottom {
                flex: 1;
                width: 100%;
                margin-top: 20px;
            }
        }
 
        .screen_middle {
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 54.8%;
            margin-left: 1.2%;
            margin-right: 1.2%;
 
            .middle_top {
                width: 100%;
                height: 62.5%;
                position: relative;
            }
 
            .middle_bottom {
                flex: 1;
                width: 100%;
                margin-top: 20px;
            }
        }
 
        .screen_right {
            height: 100%;
            width: 21.5%;
            display: flex;
            flex-direction: column;
 
            .right_top {
                width: 100%;
                height: 28%;
            }
 
            .right_middle {
                width: 100%;
                height: 32%;
                margin-top: 20px;
            }
 
            .right_bottom {
                flex: 1;
                width: 100%;
                margin-top: 20px;
            }
        }
    }
}
</style>