|
@@ -3,7 +3,9 @@
|
3
|
3
|
<div class="main-contain new-main-contain">
|
4
|
4
|
<div class="bannar_list">
|
5
|
5
|
<div class="banner_left">
|
6
|
|
- <div style="width: 1000px; display: flex; justify-content: space-between;">
|
|
6
|
+ <div
|
|
7
|
+ style="width: 1000px; display: flex; justify-content: space-evenly;"
|
|
8
|
+ >
|
7
|
9
|
<div>
|
8
|
10
|
透析模式:
|
9
|
11
|
<el-select
|
|
@@ -85,6 +87,7 @@
|
85
|
87
|
<div>
|
86
|
88
|
<el-table
|
87
|
89
|
border
|
|
90
|
+ height="70vh"
|
88
|
91
|
ref="multipleTable"
|
89
|
92
|
:data="tableData"
|
90
|
93
|
tooltip-effect="dark"
|
|
@@ -96,7 +99,8 @@
|
96
|
99
|
color: '#606266',
|
97
|
100
|
}"
|
98
|
101
|
>
|
99
|
|
- <el-table-column type="selection" width="55" align="center"> </el-table-column>
|
|
102
|
+ <el-table-column type="selection" width="55" align="center">
|
|
103
|
+ </el-table-column>
|
100
|
104
|
<el-table-column label="患者姓名" width="184" align="center">
|
101
|
105
|
<template slot-scope="scope">{{ scope.row.name }}</template>
|
102
|
106
|
</el-table-column>
|
|
@@ -863,7 +867,7 @@ export default {
|
863
|
867
|
}
|
864
|
868
|
::v-deep .el-table__body-wrapper {
|
865
|
869
|
// height: 500px;
|
866
|
|
- overflow-y: scroll;
|
|
870
|
+ // overflow-y: scroll;
|
867
|
871
|
}
|
868
|
872
|
.right_contain {
|
869
|
873
|
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27),
|
|
@@ -871,11 +875,11 @@ export default {
|
871
|
875
|
}
|
872
|
876
|
.bannar_list {
|
873
|
877
|
width: 99%;
|
874
|
|
- margin-top: 10px;
|
|
878
|
+ margin-top: 20px;
|
875
|
879
|
display: flex;
|
876
|
880
|
justify-content: space-between;
|
877
|
881
|
.banner_left {
|
878
|
|
- width: 96%;
|
|
882
|
+ width: 100%;
|
879
|
883
|
margin: 0 auto;
|
880
|
884
|
display: flex;
|
881
|
885
|
justify-content: space-between;
|
|
@@ -1092,7 +1096,8 @@ export default {
|
1092
|
1096
|
}
|
1093
|
1097
|
|
1094
|
1098
|
.el-table__body-wrapper {
|
1095
|
|
- height: auto !important;
|
|
1099
|
+ max-height: 70vh;
|
|
1100
|
+ // overflow-y: scroll;
|
1096
|
1101
|
.el-table__body {
|
1097
|
1102
|
width: 100% !important;
|
1098
|
1103
|
}
|