shuishen
2022-07-29 71ac571768baab6ca36057be77075b80cfe74739
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
.rain-water-feeling {
    position: absolute;
 
    z-index: 101;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
 
 
    .el-card__body {
        position: absolute;
        padding: 0;
        width: 100%;
        height: 100%;
 
        .header {
            position: relative;
            height: 36px;
            line-height: 36px;
            font-size: 16px;
 
            display: flex;
            align-items: center;
            justify-content: flex-start;
 
            & label {
                margin-right: 0px !important;
                margin-left: 20px;
            }
        }
 
        .rain-content {
            height: calc(100% - 36px);
 
            .header-tab {
                display: flex;
                align-items: center;
                height: 36px;
                font-size: 16px;
                text-align: center;
                justify-content: flex-start;
 
                &>label {
                    margin-right: 0px !important;
                    margin-left: 20px;
                }
 
                // .el-radio {
                //     flex: 1;
                //     margin: 0;
                // }
            }
 
            .search-condition {
                display: flex;
 
                .el-date-editor {
                    margin: 0 5px;
                    width: calc(100% - 90px)
                }
 
            }
 
            .search-conditions {
                display: flex;
                justify-content: space-around;
 
                .el-select {
                    margin-right: 5px;
                }
 
                .el-date-editor {
                    margin: 0 5px;
                }
 
                .el-button {
                    margin-right: 5px;
                }
 
            }
 
            .text-overview {
                p {
                    margin: 5px;
                    padding: 5px;
                    width: calc(100% - 10px);
                    height: 180px;
                    word-wrap: break-word;
                    overflow-y: auto;
                    border: 1px solid #ccc;
                    border-radius: 5px;
                    box-sizing: border-box;
                    text-indent: 2em;
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: 1.2px;
 
                    scrollbar-width: thin;
                }
            }
 
            .statistics {
                padding: 4px 20px;
 
                div {
                    display: flex;
                    height: 40px;
                    line-height: 40px;
                    align-items: center;
 
                    &>span:nth-child(1) {
                        margin-right: 10px;
                        width: 54px;
                        height: 20px;
                    }
 
                    &>span:nth-child(2) {
                        margin-right: 10px;
 
                    }
 
                    button {
                        color: #000;
                        border: none !important;
                        vertical-align: middle;
                        font-size: $font26;
                    }
 
                    button:hover {
                        background: transparent;
                    }
                }
            }
 
 
            .data-table {
                position: absolute;
                top: 185px;
                width: calc(100% - 10px);
                height: calc(100% - 185px);
                margin: 0 5px;
 
                .el-table {
                    height: 100%;
 
                    .el-table__body-wrapper {
                        height: calc(100% - 48px);
                        overflow-y: auto;
 
                        scrollbar-width: thin;
                    }
                }
 
 
            }
        }
 
    }
 
    .el-dialog__wrapper {
        width: calc(100% - 360px);
        height: calc(100% - 60px);
        top: auto;
        left: auto;
        right: 0;
        bottom: 0;
 
        .el-dialog {
            padding: 10px;
 
            .el-dialog__header {
                padding: 0;
                height: 48px;
                line-height: 48px;
 
 
            }
 
            .el-dialog__body {
                padding: 0;
                height: calc(100% - 48px);
 
                .dialog-data-table {
 
                    width: 100%;
                    height: 100%;
 
                    .el-table {
                        height: calc(100% - 32px);
 
                        .el-table__header-wrapper {
                            .el-table__header tr {
                                position: relative;
 
                                .cell {
                                    font-size: 16px;
                                }
 
                            }
                        }
 
                        .el-table__body-wrapper {
                            height: calc(100% - 48px);
                            overflow-y: auto;
 
                            scrollbar-width: thin;
 
                            .el-table__body td {
                                position: relative;
 
                                .cell {
                                    font-size: 16px;
                                }
 
                            }
                        }
                    }
                }
            }
        }
 
    }
 
    .rain-detail-popup {
        position: fixed;
        z-index: 999;
        padding: 10px;
        background: rgba(0, 0, 0, .7);
        color: #fff;
        border-radius: 10px;
 
        ul {
            margin: 0;
            padding: 0;
 
            li {
                line-height: 36px;
            }
        }
 
    }
}