Преглед на файлове

Merge branch 'update' of http://git.shengws.com:3000/zhangbj/xt_pad into update

zhengchengwu преди 5 години
родител
ревизия
24e37bde9d

+ 2 - 4
src/pages/advice/DialysisAdviceTable.vue Целия файл

@@ -79,13 +79,11 @@
79 79
           <td></td>
80 80
           <td></td>
81 81
           <td></td>
82
-
83
-
84 82
         </tr>
85 83
         <template v-for="(schedule) in schedules">
86 84
           <tr v-for="(advice, advice_index) in schedule.doctor_advice" :key="advice.id + '_' + advice_index + '_' + index"  @click="clickfunction(schedule)">
87 85
             <td>{{ advice.parent_id == 0 ? schedule.device_number.number : "" }}</td>
88
-            <td>{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
86
+            <td style="color:#409eff;">{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
89 87
             <td>{{ advice.parent_id == 0 ? schedule.patient.dialysis_no : "" }}</td>
90 88
             <td>{{ getAdaviceType(advice.advice_type,advice.parent_id)}}</td>
91 89
             <td>{{ advice.parent_id == 0 ? parseTime(advice.start_time, "{m}-{d} {h}:{i}") : "" }}</td>
@@ -246,7 +244,7 @@ export default {
246 244
       console.log(this.admin_user)
247 245
 
248 246
       for (let i = 0; i < this.admin_user.length; i++) {
249
-        if (this.admin_user[i].id ==  val) {
247
+        if (this.admin_user[i].id == val) {
250 248
           return this.admin_user[i].name;
251 249
         }
252 250
       }

+ 1 - 2
src/pages/main/dialysis/InspectionItemTable.vue Целия файл

@@ -40,7 +40,7 @@
40 40
         </tr>
41 41
         <tr>
42 42
           <td width="20%"></td>
43
-          <td width="10%" @click="expandTable(indexs)" v-model="isExpand">{{items.expandName}}</td>
43
+          <td width="10%" style="color:#409EFF;" @click="expandTable(indexs)" v-model="isExpand">{{items.expandName}}</td>
44 44
           <td width="10%"></td>
45 45
           <td width="10%"></td>
46 46
         </tr>
@@ -283,7 +283,6 @@ export default {
283 283
       font-weight: normal;
284 284
     }
285 285
     td {
286
-      background: #fafafa;
287 286
       border: none;
288 287
       span {
289 288
         background: #ff7979;

+ 2 - 1
src/pages/main/dialysis/MissionTable.vue Целия файл

@@ -238,7 +238,7 @@ export default {
238 238
   }
239 239
 }
240 240
 .tableDate {
241
-  background: $text-color;
241
+  background: #ecf5ff;
242 242
   color: $pgh-color;
243 243
   @include box-sizing;
244 244
   ul {
@@ -250,6 +250,7 @@ export default {
250 250
       font-size: 0.3rem;
251 251
       padding:0.16rem 0;
252 252
       line-height: 0.5rem;
253
+      border-right: 2px #fff solid;
253 254
       span {
254 255
         @include flex;
255 256
         border-right: 2px #fff solid;

+ 1 - 1
src/pages/monitoring/index.vue Целия файл

@@ -66,7 +66,7 @@
66 66
           </tr>
67 67
           <tr v-for="(item,index) in items.scheduals" :key="index" @click="clickfunction(item)">
68 68
             <td width="8%">{{item.device_number.number}}</td>
69
-            <td width="10%">{{item.patient.name}}</td>
69
+            <td width="10%" style="color:#409eff;">{{item.patient.name}}</td>
70 70
             <td width="9%">{{item.patient.dialysis_no}}</td>
71 71
             <td width="13%">{{parseTime(item.schedule_date, "{y}-{m}-{d}")}}</td>
72 72
             <td width="10%">{{item.treatment_mode.name}}</td>