柳香萍 5 years ago
parent
commit
5be151c034

+ 1 - 1
src/pages/main/DetailsPage.vue View File

171
   }
171
   }
172
   .Tab {
172
   .Tab {
173
     padding-top: 63px;
173
     padding-top: 63px;
174
-    padding-bottom: 0.25rem;
174
+    // padding-bottom: 0.25rem;
175
   }
175
   }
176
 }
176
 }
177
 </style>
177
 </style>

+ 7 - 3
src/pages/main/dialysis/AdviceTable.vue View File

65
         </li>
65
         </li>
66
       </ul>
66
       </ul>
67
     </div>
67
     </div>
68
-    <div style="width:100%;overflow:hildden;overflow-x:auto;">
68
+    <div style="width:100%;overflow:hildden;overflow-x:auto;" class="AdviceTable">
69
       <table class="table" style>
69
       <table class="table" style>
70
         <tr>
70
         <tr>
71
           <!-- <th width="150px">序号</th> -->
71
           <!-- <th width="150px">序号</th> -->
1419
   width: 100%;
1419
   width: 100%;
1420
   margin: 0 auto;
1420
   margin: 0 auto;
1421
   padding: 0.24rem 0;
1421
   padding: 0.24rem 0;
1422
-  background: #ebf1f7;
1422
+  background: #f6f8f9;
1423
   ul {
1423
   ul {
1424
     width: 50%;
1424
     width: 50%;
1425
     background: #fff;
1425
     background: #fff;
1524
     }
1524
     }
1525
   }
1525
   }
1526
 }
1526
 }
1527
-
1527
+.AdviceTable{
1528
+  padding-top:0; 
1529
+  background: #fff;
1530
+  min-height: calc(100vh - 180px);
1531
+}
1528
 
1532
 
1529
 </style>
1533
 </style>
1530
 
1534
 

+ 4 - 1
src/pages/main/dialysis/InspectionItemTable.vue View File

8
       finished-text="没有更多了"
8
       finished-text="没有更多了"
9
       @load="onLoad"
9
       @load="onLoad"
10
     >
10
     >
11
-
12
       <table class="table">
11
       <table class="table">
13
         <tr>
12
         <tr>
14
           <th width="20%">检查项目</th>
13
           <th width="20%">检查项目</th>
300
     }
299
     }
301
   }
300
   }
302
 }
301
 }
302
+.van-list{
303
+  background: #fff;
304
+  min-height: calc(100vh - 125px);
305
+}
303
 </style>
306
 </style>
304
 
307
 

+ 7 - 3
src/pages/main/dialysis/LongTable.vue View File

622
     @include justify-content-center;
622
     @include justify-content-center;
623
     li {
623
     li {
624
       @include flex;
624
       @include flex;
625
-      border-right: 0.01rem $border-color solid;
625
+      border-right: 2px #fff solid;
626
       font-size: 0.3rem;
626
       font-size: 0.3rem;
627
       height: 0.88rem;
627
       height: 0.88rem;
628
       line-height: 0.88rem;
628
       line-height: 0.88rem;
647
       @include justify-content-center;
647
       @include justify-content-center;
648
       span {
648
       span {
649
         @include flex;
649
         @include flex;
650
-        border-right: 0.01rem $border-color solid;
651
-        border-bottom: 0.01rem $border-color solid;
650
+        border-right: 2px #fff solid;
651
+        border-bottom: 2px #fff solid;
652
+        background: #ecf5ff;
653
+        display: inline-block;
654
+        height: 0.88rem;
655
+        line-height: 0.88rem;
652
         &:last-child {
656
         &:last-child {
653
           color: $main-color;
657
           color: $main-color;
654
         }
658
         }

+ 7 - 3
src/pages/main/dialysis/MissionTable.vue View File

227
     @include text-align;
227
     @include text-align;
228
     @include justify-content-center;
228
     @include justify-content-center;
229
     li {
229
     li {
230
-      border-right: 0.01rem $border-color solid;
230
+       border-right: 2px #fff solid;
231
       font-size: 0.3rem;
231
       font-size: 0.3rem;
232
       height: 0.88rem;
232
       height: 0.88rem;
233
       line-height: 0.88rem;
233
       line-height: 0.88rem;
252
       line-height: 0.5rem;
252
       line-height: 0.5rem;
253
       span {
253
       span {
254
         @include flex;
254
         @include flex;
255
-        border-right: 0.01rem $border-color solid;
256
-        border-bottom: 0.01rem $border-color solid;
255
+        border-right: 2px #fff solid;
256
+        border-bottom: 2px #fff solid;
257
+        background: #ecf5ff;
258
+        display: inline-block;
259
+        height: 0.88rem;
260
+        line-height: 0.88rem;
257
         .iconfont {
261
         .iconfont {
258
           color: $main-color;
262
           color: $main-color;
259
           font-size: 0.3rem;
263
           font-size: 0.3rem;

+ 6 - 1
src/pages/main/dialysis/RecordTable.vue View File

39
         </ul>
39
         </ul>
40
       </div>
40
       </div>
41
       <div class="blueBorder"></div>
41
       <div class="blueBorder"></div>
42
-      <div style="width:100%;overflow:hildden;overflow-x:auto;">
42
+      <div style="width:100%;overflow:hildden;overflow-x:auto;" class="RecordTable">
43
         <table class="table" style="">
43
         <table class="table" style="">
44
           <tr>
44
           <tr>
45
             <th width="124px">透析日期</th>
45
             <th width="124px">透析日期</th>
436
     }
436
     }
437
   }
437
   }
438
 }
438
 }
439
+.RecordTable{
440
+  padding-top:0; 
441
+  background: #fff;
442
+  min-height: calc(100vh - 180px);
443
+}
439
 </style>
444
 </style>
440
 
445
 

+ 7 - 3
src/pages/main/dialysis/SchedulTable.vue View File

128
     @include justify-content-center;
128
     @include justify-content-center;
129
     li {
129
     li {
130
       @include flex;
130
       @include flex;
131
-      border-right: 0.01rem $border-color solid;
131
+      border-right: 2px #fff solid;
132
       font-size: 0.3rem;
132
       font-size: 0.3rem;
133
       height: 0.88rem;
133
       height: 0.88rem;
134
       line-height: 0.88rem;
134
       line-height: 0.88rem;
153
       @include justify-content-center;
153
       @include justify-content-center;
154
       span {
154
       span {
155
         @include flex;
155
         @include flex;
156
-        border-right: 0.01rem $border-color solid;
157
-        border-bottom: 0.01rem $border-color solid;
156
+        border-right: 2px #fff solid;
157
+        border-bottom: 2px #fff solid;
158
+        background: #ecf5ff;
159
+        display: inline-block;
160
+        height: 0.88rem;
161
+        line-height: 0.88rem;
158
         .iconfont {
162
         .iconfont {
159
           color: $main-color;
163
           color: $main-color;
160
           font-size: 0.3rem;
164
           font-size: 0.3rem;

+ 7 - 3
src/pages/main/today/pastData.vue View File

91
     @include justify-content-center;
91
     @include justify-content-center;
92
     li {
92
     li {
93
       @include flex;
93
       @include flex;
94
-      border-right: 0.01rem $border-color solid;
94
+      border-right: 2px #fff solid;
95
       font-size: 0.3rem;
95
       font-size: 0.3rem;
96
       height: 0.88rem;
96
       height: 0.88rem;
97
       line-height: 0.88rem;
97
       line-height: 0.88rem;
116
       @include justify-content-center;
116
       @include justify-content-center;
117
       span {
117
       span {
118
         @include flex;
118
         @include flex;
119
-        border-right: 0.01rem $border-color solid;
120
-        border-bottom: 0.01rem $border-color solid;
119
+        border-right: 2px #fff solid;
120
+        border-bottom: 2px #fff solid;
121
+        background: #ecf5ff;
122
+        display: inline-block;
123
+        height: 0.88rem;
124
+        line-height: 0.88rem;
121
       }
125
       }
122
     }
126
     }
123
     &:last-child {
127
     &:last-child {

+ 1 - 2
src/pages/monitoring/index.vue View File

41
         @load="onLoad"
41
         @load="onLoad"
42
       >
42
       >
43
       <div class="blueBorder"></div>      
43
       <div class="blueBorder"></div>      
44
-        <table class="table">
44
+        <table class="table"  >
45
           <tr>
45
           <tr>
46
             <th width="8%">机号</th>
46
             <th width="8%">机号</th>
47
             <th width="10%">姓名</th>
47
             <th width="10%">姓名</th>
237
     },
237
     },
238
     monitorBloodPressureStatus: function(val) {
238
     monitorBloodPressureStatus: function(val) {
239
       let status = 0;
239
       let status = 0;
240
-
241
       if (val.length == 0) {
240
       if (val.length == 0) {
242
         return 0;
241
         return 0;
243
       }
242
       }

+ 7 - 3
src/pages/waitingRoom/components/pastData.vue View File

91
     @include justify-content-center;
91
     @include justify-content-center;
92
     li {
92
     li {
93
       @include flex;
93
       @include flex;
94
-      border-right: 0.01rem $border-color solid;
94
+      border-right: 2px #fff solid;
95
       font-size: 0.3rem;
95
       font-size: 0.3rem;
96
       height: 0.88rem;
96
       height: 0.88rem;
97
       line-height: 0.88rem;
97
       line-height: 0.88rem;
116
       @include justify-content-center;
116
       @include justify-content-center;
117
       span {
117
       span {
118
         @include flex;
118
         @include flex;
119
-        border-right: 0.01rem $border-color solid;
120
-        border-bottom: 0.01rem $border-color solid;
119
+        border-right: 2px #fff solid;
120
+        border-bottom: 2px #fff solid;
121
+        background: #ecf5ff;
122
+        display: inline-block;
123
+        height: 0.88rem;
124
+        line-height: 0.88rem;
121
       }
125
       }
122
     }
126
     }
123
     &:last-child {
127
     &:last-child {

+ 2 - 0
src/styles/style.scss View File

504
   text-align: center;
504
   text-align: center;
505
   border: $border-color;
505
   border: $border-color;
506
   padding-bottom: 0.02rem;
506
   padding-bottom: 0.02rem;
507
+  border: none;
507
   tr {
508
   tr {
508
     padding: 0;
509
     padding: 0;
509
     margin: 0;
510
     margin: 0;
521
       background: #ecf5ff;
522
       background: #ecf5ff;
522
       border: none;
523
       border: none;
523
       padding: 0.18rem 0;
524
       padding: 0.18rem 0;
525
+      
524
       .xg {
526
       .xg {
525
         color: $main-color;
527
         color: $main-color;
526
         font-size: 0.28rem;
528
         font-size: 0.28rem;