|
@@ -15,7 +15,6 @@
|
15
|
15
|
display: flex;
|
16
|
16
|
flex-direction: column;
|
17
|
17
|
width: 100%;
|
18
|
|
- height: 100%;
|
19
|
18
|
position: relative;
|
20
|
19
|
background: #f9fafb;
|
21
|
20
|
.transport-1_round_solid,
|
|
@@ -285,17 +284,19 @@
|
285
|
284
|
/* 工单总数 */
|
286
|
285
|
.lists_box {
|
287
|
286
|
width: 100%;
|
288
|
|
- height: 100%;
|
|
287
|
+ height: calc(100vh - 241px + 185px);
|
289
|
288
|
margin-top: 24px;
|
290
|
289
|
padding-bottom: 20px;
|
291
|
290
|
min-height: 539px;
|
|
291
|
+ display: flex;
|
|
292
|
+ &.top185 {
|
|
293
|
+ height: calc(100vh - 241px);
|
|
294
|
+ }
|
292
|
295
|
}
|
293
|
296
|
|
294
|
297
|
.lists {
|
295
|
298
|
width: 32.6%;
|
296
|
|
- height: 100%;
|
297
|
299
|
border: 1px rgb(225, 229, 232) solid;
|
298
|
|
- float: left;
|
299
|
300
|
margin-left: 1%;
|
300
|
301
|
border-radius: 2px;
|
301
|
302
|
overflow: hidden;
|
|
@@ -375,12 +376,12 @@
|
375
|
376
|
/* 搜索 */
|
376
|
377
|
.lists .searchBox {
|
377
|
378
|
width: 100%;
|
378
|
|
- padding: 10px 0;
|
|
379
|
+ padding: 10px 2%;
|
379
|
380
|
background: #f9fafb;
|
380
|
381
|
position: relative;
|
381
|
382
|
z-index: 9;
|
382
|
383
|
display: flex;
|
383
|
|
- justify-content: space-evenly;
|
|
384
|
+ justify-content: space-between;
|
384
|
385
|
align-items: center;
|
385
|
386
|
|
386
|
387
|
.search {
|
|
@@ -432,15 +433,13 @@
|
432
|
433
|
.lists .cots_body {
|
433
|
434
|
box-sizing: border-box;
|
434
|
435
|
width: 100%;
|
435
|
|
- height: calc(100% - 94px);
|
|
436
|
+ height: calc(100vh - 355px + 185px);
|
|
437
|
+ min-height: 425px;
|
436
|
438
|
background-color: white;
|
437
|
439
|
border-top: 1px rgb(225, 229, 232) solid;
|
438
|
|
- // overflow: hidden;
|
439
|
|
- // overflow-y: scroll;
|
440
|
|
- // position: absolute;
|
441
|
|
- // padding-right: 4%;
|
442
|
|
- // top: 94px;
|
443
|
|
- // padding-top: 94px;
|
|
440
|
+ &.top185 {
|
|
441
|
+ height: calc(100vh - 355px);
|
|
442
|
+ }
|
444
|
443
|
}
|
445
|
444
|
|
446
|
445
|
/* loading */
|