Browse Source

修改样式2

See999 5 years ago
parent
commit
6f60b8f080

+ 19 - 120
src/pages/main/DetailsPage.vue View File

@@ -27,33 +27,8 @@
27 27
         <!-- <div class="time" style="width:1.49rem;">
28 28
                   <span class="iconfont">2018-01-01&#xe74a;</span>
29 29
         </div>-->
30
-<<<<<<< .mine
31 30
         <div class="print" style="float: right; visibility: hidden;">
32 31
           <el-button size="mini" type="primary" @click="print" icon="el-icon-printer">打印</el-button>
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-=======
44
-              <div class="print" style="float: right;">
45
-                <el-button size="mini" type="primary" @click="print" icon="el-icon-printer">打印</el-button>
46
-              </div>
47
-
48
-            </div>
49
-            <div class="Tab">
50
-              <CaseHistory v-show="index==0" title="病历"></CaseHistory>
51
-              <!--<check-tab v-show="index==1" title="化验单"></check-tab>-->
52
-              <dialysis-tab v-show="index==1" title="透析" v-on:records="jump(val)"></dialysis-tab>
53
-              <today-tab ref="today" v-show="index==2" title="今日" ></today-tab>
54
-            </div>
55
-
56
->>>>>>> .theirs
57 32
         </div>
58 33
       </div>
59 34
       <div class="Tab">
@@ -74,19 +49,11 @@
74 49
             year-format="{value} "
75 50
             month-format="{value} "
76 51
             date-format="{value} ">
77
-<<<<<<< .mine
78 52
     </mt-datetime-picker>-->
79 53
   </div>
80
-
81
-=======
82
-        </mt-datetime-picker> -->
83
-
84
-    </div>
85
->>>>>>> .theirs
86 54
 </template>
87 55
 
88 56
 <script>
89
-<<<<<<< .mine
90 57
 import SideBar from "@/pages/layout/SideBar";
91 58
 import TodayTab from "./today/TodayTab";
92 59
 import DialysisTab from "./dialysis/DialysisTab";
@@ -97,21 +64,9 @@ import { parseTime } from "@/utils";
97 64
 import { GetPatientInfoWithDiseases } from "@/api/patient";
98 65
 import { Toast } from "vant";
99 66
 import CaseHistory from "./records/CaseHistory";
100
-=======
101
-import SideBar from '@/pages/layout/SideBar'
102
-import TodayTab from './today/TodayTab'
103
-import DialysisTab from './dialysis/DialysisTab'
104
-import RecordsTab from './records/RecordsTab'
105
-import { Popover } from 'vux'
106
-import CheckTab from './dialysis/CheckTab'
107
-import {parseTime} from '@/utils'
108
-import {GetPatientInfoWithDiseases} from '@/api/patient'
109
-import { Toast } from 'vant'
110
-import CaseHistory from './records/CaseHistory'
111
->>>>>>> .theirs
112 67
 
113 68
 export default {
114
-  name: 'DetailsPage',
69
+  name: "DetailsPage",
115 70
   components: {
116 71
     CaseHistory,
117 72
     CheckTab,
@@ -121,38 +76,32 @@ export default {
121 76
     RecordsTab,
122 77
     Popover
123 78
   },
124
-  data () {
79
+  data() {
125 80
     return {
126 81
       // pickerVisible: new Date(),
127 82
       patient_id: 0,
128
-      patient_name: '',
83
+      patient_name: "",
129 84
       date: 0,
130 85
       index: 2,
131
-<<<<<<< .mine
132 86
       patient: null
133 87
     };
134
-=======
135
-      patient: null
136
-    }
137
->>>>>>> .theirs
138 88
   },
139
-  created () {
140
-    var patient_id = this.$route.query.patient_id
141
-    var date = this.$route.query.date
142
-    var patient_name = this.$route.query.patient_name
143
-    this.patient_id = patient_id
144
-    this.date = date
145
-    this.patient_name = patient_name
146
-    this.GetPatientInfoWithDiseases(this.patient_id)
89
+  created() {
90
+    var patient_id = this.$route.query.patient_id;
91
+    var date = this.$route.query.date;
92
+    var patient_name = this.$route.query.patient_name;
93
+    this.patient_id = patient_id;
94
+    this.date = date;
95
+    this.patient_name = patient_name;
96
+    this.GetPatientInfoWithDiseases(this.patient_id);
147 97
   },
148 98
   methods: {
149
-    ClickTab: function (tabIndex) {
150
-      this.index = tabIndex
99
+    ClickTab: function(tabIndex) {
100
+      this.index = tabIndex;
151 101
     },
152
-    backAction () {
153
-      this.$router.back(-1)
102
+    backAction() {
103
+      this.$router.back(-1);
154 104
     },
155
-<<<<<<< .mine
156 105
     openPicker() {
157 106
       this.$refs.picker.open();
158 107
     },
@@ -162,19 +111,7 @@ export default {
162 111
         this.$router.push(
163 112
           "/Print?xtdate=" + xtdate + "&xtno=" + this.patient.dialysis_no
164 113
         );
165
-=======
166
-    openPicker () {
167
-      this.$refs.picker.open()
168
-    },
169
-    print: function () {
170
-      var xtdate = parseTime(this.date, '{y}-{m}-{d}')
171
-      if (this.patient != null) {
172
-        this.$router.push('/Print?xtdate=' + xtdate + '&xtno=' + this.patient.dialysis_no)
173
-
174
-
175
->>>>>>> .theirs
176 114
       }
177
-<<<<<<< .mine
178 115
     },
179 116
     GetPatientInfoWithDiseases(id) {
180 117
       GetPatientInfoWithDiseases(id)
@@ -190,55 +127,17 @@ export default {
190 127
           // on cancel
191 128
           Toast.fail("网络异常");
192 129
           return false;
193
-=======
194
-    },
195
-    GetPatientInfoWithDiseases (id) {
196
-      GetPatientInfoWithDiseases(id).then(response => {
197
-        if (response.data.state == 1) {
198
-          this.patient = response.data.data.patient
199
-        } else {
200
-          Toast.fail('网络异常')
201
-          return false
202
-
203
-
204
-
205
-
206
-
207
-
208
-
209
->>>>>>> .theirs
210
-<<<<<<< .mine
211 130
         });
212 131
     },
213 132
     jump: function(val) {
214 133
       this.index = 2;
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-=======
225
-        }
226
-      }).catch(() => {
227
-        // on cancel
228
-        Toast.fail('网络异常')
229
-        return false
230
-      })
231 134
     },
232
-    jump: function (val) {
233
-      this.index = 2
234
-    },
235
-    toMyPatients () {
236
-      var patient_id = this.$route.query.patient_id
237
-      this.$router.push('/mypatients/' + patient_id)
238
->>>>>>> .theirs
135
+    toMyPatients() {
136
+      var patient_id = this.$route.query.patient_id;
137
+      this.$router.push("/mypatients/" + patient_id);
239 138
     }
240 139
   }
241
-}
140
+};
242 141
 </script>
243 142
 
244 143
 <style style="stylesheet/scss" lang="scss" scoped>

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

@@ -515,7 +515,7 @@ export default {
515 515
 }
516 516
 </style>
517 517
 
518
-<style>
518
+<style style="stylesheet/scss" lang="scss">
519 519
 .picker-toolbar {
520 520
   height: 60px;
521 521
 }

+ 25 - 339
src/pages/main/PatientBox.vue View File

@@ -55,7 +55,6 @@
55 55
 </template>
56 56
 
57 57
 <script>
58
-<<<<<<< .mine
59 58
 import { parseTime } from "@/utils";
60 59
 import { jsGetAge } from "@/utils/tools";
61 60
 import { setDialysisOrWaitSelectedConfig } from "@/utils/data_config";
@@ -107,6 +106,10 @@ export default {
107 106
         return "gray";
108 107
       } else if (state == 3) {
109 108
         return "red";
109
+      } else if (state == 5) {
110
+        return "green1";
111
+      } else if (state == 6) {
112
+        return "green2";
110 113
       } else {
111 114
         return "blue";
112 115
       }
@@ -137,175 +140,46 @@ export default {
137 140
         return "已下机";
138 141
       } else if (state == 3) {
139 142
         return "监测中";
143
+      } else if (state == 5) {
144
+        return "待称重";
145
+      } else if (state == 6) {
146
+        return "待开处方";
140 147
       } else {
141 148
         // return schedual.patient.gender == 1 ? "男" : "女"
142 149
         return "未上机";
143 150
       }
144 151
     },
145 152
     computeState: function(schedual) {
146
-      if (schedual.dialysis_order == null) {
147
-        // 未上机
148
-        return 4;
149
-      } else if (schedual.dialysis_order.stage == 2) {
150
-        // 已下机
151
-        return 2;
152
-      } else if (
153
-        schedual.dialysis_order.stage == 1 &&
154
-        schedual.monitoring_records != null &&
155
-        schedual.monitoring_records.length > 1
153
+      if (
154
+        schedual.assessment_before_dislysis == null ||
155
+        schedual.assessment_before_dislysis.weight_before == 0
156 156
       ) {
157
-        // 监测中
158
-        return 3;
159
-      } else {
160
-        return 1;
161
-      }
162
-    },
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-=======
183
-import {parseTime} from '@/utils'
184
-import {jsGetAge} from '@/utils/tools'
185
-import {
186
-  setDialysisOrWaitSelectedConfig
187
-} from '@/utils/data_config'
188
-export default {
189
-  name: 'PatientBox',
190
-  props: {
191
-    patients: Array
192
-  },
193
-  data () {
194
-    return {}
195
-  },
196
-  created () {
197
-    console.log('11111')
198
-    console.log(this.patients)
199
-  },
200
-  methods: {
201
-    getUnReadNum: function (schedual) {
202
-      if (schedual.doctor_advice != null) {
203
-        let doctorAdvice = []
204
-        for (let i = 0; i < schedual.doctor_advice.length; i++) {
205
-          if (schedual.doctor_advice[i].execution_state == 2) {
206
-            doctorAdvice.push(schedual.doctor_advice[i])
207
-          }
208
-        }
209
-        const sorted = this.groupBy(doctorAdvice, function (item) {
210
-          return [item.groupno]
211
-        })
212
-        return sorted.length
213
-      }
214
-    },
215
-    getStatus: function (schedual) {
216
-      var isShowDot = false
217
-      if (schedual.doctor_advice != null) {
218
-        for (let i = 0; i < schedual.doctor_advice.length; i++) {
219
-          if (schedual.doctor_advice[i].execution_state == 2) {
220
-            isShowDot = true
221
-          }
222
-        }
223
-        return isShowDot
224
-      } else {
225
-        return false
226
-      }
227
-    },
228
-    stateColor: function (schedual) {
229
-      var state = this.computeState(schedual)
230
-      if (state == 1) {
231
-        return 'blue'
232
-      } else if (state == 2) {
233
-        return 'gray'
234
-      } else if (state == 3) {
235
-        return 'red'
236
-      } else if (state == 5) {
237
-        return 'green1'
238
-      } else if (state == 6) {
239
-        return 'green2'
240
-      } else {
241
-        return 'blue'
242
-      }
243
-    },
244
-    functionColor: function (schedual) {
245
-      var state = this.computeState(schedual)
246
-      if (state == 1 || state == 3) {
247
-        return 'blue'
248
-      } else if (state == 2) {
249
-        return 'gray'
250
-      } else {
251
-        return 'blue'
252
-      }
253
-    },
254
-    borderColor: function (schedual) {
255
-      var yc = this.isAbnormal(schedual)
256
-      if (yc == true) {
257
-        return 'red'
258
-      } else {
259
-        return 'gray'
260
-      }
261
-    },
262
-    stateText: function (schedual) {
263
-      var state = this.computeState(schedual)
264
-      if (state == 1) {
265
-        return '已上机'
266
-      } else if (state == 2) {
267
-        return '已下机'
268
-      } else if (state == 3) {
269
-        return '监测中'
270
-      } else if (state == 5) {
271
-        return '待称重'
272
-      } else if (state == 6) {
273
-        return '待开处方'
274
-      } else {
275
-        // return schedual.patient.gender == 1 ? "男" : "女"
276
-        return '未上机'
277
-      }
278
-    },
279
-    computeState: function (schedual) {
280
-      if (schedual.assessment_before_dislysis == null || schedual.assessment_before_dislysis.weight_before == 0) {
281 157
         // 未签到称重
282
-        return 5
158
+        return 5;
283 159
       }
284 160
       if (schedual.prescription == null || schedual.prescription.creater == 0) {
285 161
         // 未确认处方
286
-        return 6
162
+        return 6;
287 163
       }
288 164
 
289 165
       if (schedual.dialysis_order == null) {
290 166
         // 未上机
291
-        return 4
167
+        return 4;
292 168
       } else if (schedual.dialysis_order.stage == 2) {
293 169
         // 已下机
294
-        return 2
170
+        return 2;
295 171
       } else if (
296 172
         schedual.dialysis_order.stage == 1 &&
297
-          schedual.monitoring_records != null &&
298
-          schedual.monitoring_records.length > 1
173
+        schedual.monitoring_records != null &&
174
+        schedual.monitoring_records.length > 1
299 175
       ) {
300 176
         // 监测中
301
-        return 3
177
+        return 3;
302 178
       } else {
303
-        return 1
179
+        return 1;
304 180
       }
305 181
     },
306
->>>>>>> .theirs
307 182
 
308
-<<<<<<< .mine
309 183
     orderState: function(schedual) {
310 184
       if (schedual.dialysis_order == null) {
311 185
         // 未上机
@@ -354,58 +228,7 @@ export default {
354 228
       } else {
355 229
         return schedual.patient.age;
356 230
       }
357
-=======
358
-    orderState: function (schedual) {
359
-      if (schedual.dialysis_order == null) {
360
-        // 未上机
361
-        return 4
362
-      } else if (schedual.dialysis_order.stage == 2) {
363
-        // 已下机
364
-        return 2
365
-      } else if (
366
-        schedual.dialysis_order.stage == 1 &&
367
-          schedual.monitoring_records != null &&
368
-          schedual.monitoring_records.length > 1
369
-      ) {
370
-        // 监测中
371
-        return 3
372
-      } else {
373
-        return 1
374
-      }
375
-    },
376
-    isAbnormal: function (schedual) {
377
-      return false // schedual.yc;
378
-    },
379
-    timeTypeText: function (schedual) {
380
-      if (schedual.schedule_type == 1) {
381
-        return '上午'
382
-      } else if (schedual.schedule_type == 2) {
383
-        return '下午'
384
-      } else {
385
-        return '晚上'
386
-      }
387
-    },
388
-    genderText: function (schedual) {
389
-      if (schedual.patient.gender == 0) {
390
-        return '未知'
391
-      } else if (schedual.patient.gender == 1) {
392
-        return '男'
393
-      } else {
394
-        return '女'
395
-      }
396
-    },
397
-    age: function (schedual) {
398
-      if (schedual.patient.age == 0) {
399
-        return jsGetAge(parseTime(schedual.patient.birthday, '{y}-{m}-{d}'), '-')
400
-      } else {
401
-        return schedual.patient.age
402
-      }
403
-
404
-
405
-
406
->>>>>>> .theirs
407 231
 
408
-<<<<<<< .mine
409 232
       // var now = new Date();
410 233
       // var nowYear = parseTime(now, "{y}");
411 234
       // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
@@ -430,34 +253,7 @@ export default {
430 253
       } else {
431 254
         setDialysisOrWaitSelectedConfig(0);
432 255
       }
433
-=======
434
-      // var now = new Date();
435
-      // var nowYear = parseTime(now, "{y}");
436
-      // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
437
-      // // console.log(nowYear)
438
-      // // console.log(birthdayYear)
439
-      // return nowYear - birthdayYear;
440
-    },
441
-    groupBy (array, f) {
442
-      const groups = {}
443
-      array.forEach(function (o) {
444
-        const group = JSON.stringify(f(o))
445
-        groups[group] = groups[group] || []
446
-        groups[group].push(o)
447
-      })
448
-      return Object.keys(groups).map(function (group) {
449
-        return groups[group]
450
-      })
451
-    },
452
-    detailAction: function (schedual) {
453
-      if (schedual.dialysis_order != null) {
454
-        setDialysisOrWaitSelectedConfig(1)
455
-      } else {
456
-        setDialysisOrWaitSelectedConfig(0)
457
-      }
458
->>>>>>> .theirs
459 256
 
460
-<<<<<<< .mine
461 257
       var patient_id = schedual.patient_id;
462 258
       var date = schedual.schedule_date;
463 259
       this.$router.push({
@@ -466,29 +262,11 @@ export default {
466 262
           patient_id: patient_id,
467 263
           date: date,
468 264
           patient_name: schedual.patient.name
469
-=======
470
-      var patient_id = schedual.patient_id
471
-      var date = schedual.schedule_date
472
-      this.$router.push({
473
-        path: '/details',
474
-        query: {
475
-          patient_id: patient_id,
476
-          date: date,
477
-          patient_name: schedual.patient.name
478
->>>>>>> .theirs
479 265
         }
480
-<<<<<<< .mine
481 266
       });
482
-=======
483
-      })
484
->>>>>>> .theirs
485 267
     }
486 268
   }
487
-<<<<<<< .mine
488 269
 };
489
-=======
490
-}
491
->>>>>>> .theirs
492 270
 </script>
493 271
 
494 272
 <style style="stylesheet/scss" lang="scss" scoped>
@@ -593,6 +371,12 @@ export default {
593 371
       .green {
594 372
         background: #5bd18b;
595 373
       }
374
+      .green1 {
375
+        background: #e6a23c;
376
+      }
377
+      .green2 {
378
+        background: #7930c3;
379
+      }
596 380
       .gray {
597 381
         background: #a8b3ba;
598 382
       }
@@ -618,105 +402,7 @@ export default {
618 402
   font-size: 0.8em;
619 403
   border-radius: 20px;
620 404
   color: #fff;
621
-<<<<<<< .mine
622 405
   background: #f56c6c;
623
-
624
-
625
-
626
-
627
-
628
-
629
-
630
-
631
-
632
-
633
-
634
-
635
-
636
-
637
-
638
-
639
-
640
-
641
-
642
-
643
-
644
-
645
-
646
-
647
-
648
-
649
-
650
-
651
-
652
-
653
-
654
-
655
-
656
-
657
-
658
-
659
-
660
-
661
-
662
-
663
-
664
-
665
-
666
-
667
-
668
-
669
-
670
-=======
671
-  width: 1.35rem;
672
-  height: 0.56rem;
673
-  line-height: 0.56rem;
674
-  border-radius: 4px;
675
-  margin: 0 auto;
676
-  font-size: 0.32rem;
677
-  }
678
-  .blue {
679
-  background: $main-color;
680
-  }
681
-  .red {
682
-  background: #f18f68;
683
-  }
684
-  .green {
685
-  background: #5bd18b;
686
-  }
687
-  .green1 {
688
-        background: #e6a23c;
689
-      }
690
-      .green2 {
691
-        background: #7930c3;
692
-      }
693
-  .gray {
694
-  background: #a8b3ba;
695
-  }
696
-  .lightGray {
697
-  background: #c6cdd2;
698
-  }
699
-  .time {
700
-  font-size: 0.26rem;
701
-  color: #34495e;
702
-  }
703
-  }
704
-  }
705
-  }
706
-  .red {
707
-  border: 1px #ff7979 solid;
708
-  }
709
-  .redpoint{
710
-  display:inline-block;
711
-  height:20px;
712
-  width:20px;
713
-  line-height:18px;
714
-  text-align:center;
715
-  font-size:0.8em;
716
-  border-radius:20px;
717
-  color:#fff;
718
-  background:#F56C6C;
719
->>>>>>> .theirs
720 406
   position: absolute;
721 407
   top: -8px;
722 408
   left: 0.7rem;

+ 6 - 18
src/pages/main/PrintIndex.vue View File

@@ -18,7 +18,6 @@
18 18
         <!--&lt;!&ndash;<el-button size="mini" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>&ndash;&gt;-->
19 19
         <!--</div>-->
20 20
       </div>
21
-<<<<<<< .mine
22 21
       <DialysisPrintOrderOne
23 22
         style="margin-top:60px;"
24 23
         v-bind:childResponse="childResponse"
@@ -34,23 +33,12 @@
34 33
         v-bind:childResponse="childResponse"
35 34
         v-if="org_template_info.template_id ==5"
36 35
       ></DialysisPrintOrderFive>
37
-=======
38
-      <DialysisPrintOrderOne style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==1"> </DialysisPrintOrderOne>
39
-      <DialysisPrintOrderTwo style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==2||org_template_info.template_id ==0"></DialysisPrintOrderTwo>
40
-      <DialysisPrintOrderFive style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==5"></DialysisPrintOrderFive>
41 36
       <!--<DialysisPrintOrderSix style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==6"></DialysisPrintOrderSix>-->
42
-      <DialysisPrintOrderSix style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==6"></DialysisPrintOrderSix>
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
->>>>>>> .theirs
37
+      <DialysisPrintOrderSix
38
+        style="margin-top:60px;"
39
+        v-bind:childResponse="childResponse"
40
+        v-if="org_template_info.template_id ==6"
41
+      ></DialysisPrintOrderSix>
54 42
     </div>
55 43
     <side-bar :active_index="0" v-if="isShow == true"></side-bar>
56 44
   </div>
@@ -67,7 +55,7 @@ import LabelBox from "./printItem/LabelBox";
67 55
 import DialysisPrintOrderOne from "./template/DialysisPrintOrderOne";
68 56
 import DialysisPrintOrderTwo from "./template/DialysisPrintOrderTwo";
69 57
 import DialysisPrintOrderFive from "./template/DialysisPrintOrderFive";
70
-import DialysisPrintOrderSix from './template/DialysisPrintOrderSix'
58
+import DialysisPrintOrderSix from "./template/DialysisPrintOrderSix";
71 59
 
72 60
 export default {
73 61
   name: "PrintIndex",

+ 0 - 94
src/pages/main/RecordPage.vue View File

@@ -98,37 +98,19 @@
98 98
 </template>
99 99
 
100 100
 <script>
101
-<<<<<<< .mine
102 101
 import DialysisArea from "./DialysisArea";
103 102
 import WaitingArea from "./WaitingArea";
104 103
 import { Popover } from "vux";
105 104
 import { getDialysisScheduals, getWaitingScheduals } from "@/api/dialysis";
106 105
 import { parseTime } from "@/utils/index";
107 106
 import { getDialysisOrWaitSelectedConfig } from "@/utils/data_config";
108
-=======
109
-import DialysisArea from './DialysisArea'
110
-import WaitingArea from './WaitingArea'
111
-import {Popover} from 'vux'
112
-import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
113
-import {parseTime} from '@/utils/index'
114
-import {getDialysisOrWaitSelectedConfig} from '@/utils/data_config'
115
->>>>>>> .theirs
116 107
 
117
-<<<<<<< .mine
118 108
 export default {
119 109
   name: "RecordPage",
120 110
   props: {
121 111
     un_read_wait_num: {
122 112
       type: Number
123
-=======
124
-export default {
125
-  name: 'RecordPage',
126
-  props: {
127
-    un_read_wait_num: {
128
-      type: Number
129
->>>>>>> .theirs
130 113
     },
131
-<<<<<<< .mine
132 114
     un_read_dialysis_num: {
133 115
       type: Number
134 116
     }
@@ -151,82 +133,19 @@ export default {
151 133
     // Group,
152 134
     // Cell
153 135
   },
154
-=======
155
-    un_read_dialysis_num: {
156
-      type: Number
157
-    }
158
-  },
159
-  data () {
160
-    return {
161
-      index: 1,
162
-      search_input: '',
163
-      search_keyword: '',
164
-      scheduals: [],
165
-      advice_groups: [],
166
-      unReadWaitNum: 0,
167
-      unReadDialysisNum: 0
168
-
169
-
170
-
171
-
172 136
 
173
-
174
-
175
-
176
-
177
->>>>>>> .theirs
178
-
179
-<<<<<<< .mine
180 137
   methods: {
181 138
     ClickTab: function(tabIndex) {
182 139
       this.index = tabIndex;
183
-
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
-
193
-=======
194
-    }
195
-  },
196
-  components: {
197
-    DialysisArea,
198
-    WaitingArea,
199
-    Popover
200
-    // Group,
201
-    // Cell
202
-  },
203
-
204
-  methods: {
205
-    ClickTab: function (tabIndex) {
206
-      this.index = tabIndex
207
->>>>>>> .theirs
208 140
     },
209
-<<<<<<< .mine
210 141
     searchWithKeyword: function() {
211 142
       this.$refs.search_field.blur();
212 143
       this.search_keyword = this.search_input;
213
-=======
214
-    searchWithKeyword: function () {
215
-      this.$refs.search_field.blur()
216
-      this.search_keyword = this.search_input
217
->>>>>>> .theirs
218 144
     },
219
-<<<<<<< .mine
220 145
     clearKeyword: function() {
221 146
       this.search_input = "";
222 147
       this.search_keyword = "";
223
-=======
224
-    clearKeyword: function () {
225
-      this.search_input = ''
226
-      this.search_keyword = ''
227
->>>>>>> .theirs
228 148
     }
229
-<<<<<<< .mine
230 149
   },
231 150
   created() {
232 151
     var index = getDialysisOrWaitSelectedConfig();
@@ -234,21 +153,8 @@ export default {
234 153
     if (index != null) {
235 154
       this.index = index;
236 155
     }
237
-=======
238
-  },
239
-  created () {
240
-    var index = getDialysisOrWaitSelectedConfig()
241
-    console.log(index)
242
-    if (index != null) {
243
-      this.index = index
244
-    }
245
->>>>>>> .theirs
246 156
   }
247
-<<<<<<< .mine
248 157
 };
249
-=======
250
-}
251
->>>>>>> .theirs
252 158
 </script>
253 159
 
254 160
 <style style="stylesheet/scss" lang="scss" scoped>

+ 80 - 132
src/pages/main/dialog/LongDialog.vue View File

@@ -296,52 +296,52 @@
296 296
 </template>
297 297
 
298 298
 <script>
299
-import LongDialogMenu from './subMenu/LongDialogMenu'
300
-import { createPatientDialysisSolution } from '@/api/patient'
301
-import { Toast } from 'vant'
299
+import LongDialogMenu from "./subMenu/LongDialogMenu";
300
+import { createPatientDialysisSolution } from "@/api/patient";
301
+import { Toast } from "vant";
302 302
 
303 303
 export default {
304
-  name: 'LongDialog',
304
+  name: "LongDialog",
305 305
   components: {
306 306
     LongDialogMenu
307 307
   },
308 308
   methods: {
309
-    handleDialyser (item) {
310
-      this.showObj.paden_show = true
309
+    handleDialyser(item) {
310
+      this.showObj.paden_show = true;
311 311
     },
312
-    showModel () {
313
-      this.showObj.mode_show[0] = true
314
-      this.showObj.paden_show = false
312
+    showModel() {
313
+      this.showObj.mode_show[0] = true;
314
+      this.showObj.paden_show = false;
315 315
     },
316
-    showQi () {
317
-      this.showObj.mode_show[1] = true
318
-      this.showObj.paden_show = false
316
+    showQi() {
317
+      this.showObj.mode_show[1] = true;
318
+      this.showObj.paden_show = false;
319 319
     },
320
-    showMenu (index) {
321
-      this.showObj.mode_show[index] = true
322
-      this.showObj.paden_show = false
320
+    showMenu(index) {
321
+      this.showObj.mode_show[index] = true;
322
+      this.showObj.paden_show = false;
323 323
     },
324 324
 
325
-    submitSolution () {
326
-      this.dialysisSolution.mode = this.dialysisSolution.mode_id
325
+    submitSolution() {
326
+      this.dialysisSolution.mode = this.dialysisSolution.mode_id;
327 327
       createPatientDialysisSolution(
328 328
         this.patient.id,
329 329
         this.dialysisSolution
330 330
       ).then(response => {
331 331
         if (response.data.state == 0) {
332
-          Toast.fail(response.data.msg)
332
+          Toast.fail(response.data.msg);
333 333
           // this.$toast({message: response.data.msg});
334
-          return false
334
+          return false;
335 335
         } else {
336
-          Toast.success('创建成功')
336
+          Toast.success("创建成功");
337 337
           // this.$toast({message: "创建成功"});
338
-          this.$emit('longSolution')
338
+          this.$emit("longSolution");
339 339
           for (const key in response.data.data.solution) {
340
-            this.solution_prop[key] = response.data.data.solution[key]
340
+            this.solution_prop[key] = response.data.data.solution[key];
341 341
           }
342 342
           // this.solution_prop = response.data.data.solution
343 343
         }
344
-      })
344
+      });
345 345
     }
346 346
   },
347 347
 
@@ -354,14 +354,14 @@ export default {
354 354
     },
355 355
     machines_prop: {
356 356
       type: Array,
357
-      default: function () {
358
-        return new Array()
357
+      default: function() {
358
+        return new Array();
359 359
       }
360 360
     }
361 361
   },
362
-  data () {
362
+  data() {
363 363
     return {
364
-      doctor: '',
364
+      doctor: "",
365 365
       showObj: {
366 366
         mode_show: {
367 367
           0: false,
@@ -384,160 +384,113 @@ export default {
384 384
 
385 385
       anticoagulant: {
386 386
         id: 0,
387
-        name: '',
387
+        name: "",
388 388
         type: 1,
389 389
         shouji: 1,
390 390
         weichi: 1,
391 391
         zongliang: 1,
392 392
         gaimingcheng: -1,
393 393
         gaijiliang: -1,
394
-        shouji_unit: 'mg',
395
-        weichi_unit: 'mg/h',
396
-        zongliang_unit: 'mg',
397
-        gaimingcheng_unit: '',
398
-        gaijiliang_unit: ''
394
+        shouji_unit: "mg",
395
+        weichi_unit: "mg/h",
396
+        zongliang_unit: "mg",
397
+        gaimingcheng_unit: "",
398
+        gaijiliang_unit: ""
399 399
       },
400 400
       patient: {
401 401
         id: 0
402 402
       },
403 403
       dialysisSolution: {
404 404
         id: 0,
405
-        mode: '',
406
-        mode_id: '',
407
-        mode_name: '',
408
-        dialysis_duration: '',
409
-        hemodialysis_machine: '',
410
-        perfusion_apparatus: '',
411
-        perfusion_apparatus_name: '',
412
-        blood_flow_volume: '',
413
-        dewater: '',
405
+        mode: "",
406
+        mode_id: "",
407
+        mode_name: "",
408
+        dialysis_duration: "",
409
+        hemodialysis_machine: "",
410
+        perfusion_apparatus: "",
411
+        perfusion_apparatus_name: "",
412
+        blood_flow_volume: "",
413
+        dewater: "",
414 414
         displace_liqui: 0,
415
-        replacement_way: '',
416
-        replacement_way_name: '',
417
-        anticoagulant: '',
418
-        anticoagulant_name: '',
419
-        anticoagulant_shouji: '',
420
-        anticoagulant_weichi: '',
421
-        anticoagulant_zongliang: '',
422
-        anticoagulant_gaimingcheng: '',
423
-        anticoagulant_gaijiliang: '',
424
-        kalium: '',
425
-        sodium: '',
426
-        calcium: '',
427
-        bicarbonate: '',
428
-        glucose: '',
429
-        dry_weight: '',
430
-        dialysate_flow: '',
431
-        dialysate_temperature: '',
432
-        conductivity: '',
433
-        doctor: '',
434
-        remark: ''
415
+        replacement_way: "",
416
+        replacement_way_name: "",
417
+        anticoagulant: "",
418
+        anticoagulant_name: "",
419
+        anticoagulant_shouji: "",
420
+        anticoagulant_weichi: "",
421
+        anticoagulant_zongliang: "",
422
+        anticoagulant_gaimingcheng: "",
423
+        anticoagulant_gaijiliang: "",
424
+        kalium: "",
425
+        sodium: "",
426
+        calcium: "",
427
+        bicarbonate: "",
428
+        glucose: "",
429
+        dry_weight: "",
430
+        dialysate_flow: "",
431
+        dialysate_temperature: "",
432
+        conductivity: "",
433
+        doctor: "",
434
+        remark: ""
435 435
       }
436
-    }
436
+    };
437 437
   },
438 438
   watch: {
439
-    'dialysisSolution.anticoagulant': function () {
440
-      var thismode = parseInt(this.dialysisSolution.anticoagulant)
439
+    "dialysisSolution.anticoagulant": function() {
440
+      var thismode = parseInt(this.dialysisSolution.anticoagulant);
441 441
       if (isNaN(thismode) || thismode <= 0) {
442
-        return false
442
+        return false;
443 443
       }
444 444
       if (
445
-        typeof this.anticoagulantsConfit[thismode] === 'undefined' ||
445
+        typeof this.anticoagulantsConfit[thismode] === "undefined" ||
446 446
         this.anticoagulantsConfit[thismode] == null
447 447
       ) {
448
-        return false
448
+        return false;
449 449
       }
450
-<<<<<<< .mine
451 450
       this.anticoagulant = this.anticoagulantsConfit[thismode];
452 451
       this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[
453 452
         thismode
454 453
       ].name;
455
-=======
456
-      this.anticoagulant = this.anticoagulantsConfit[thismode]
457
-      this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[thismode].name
458
-
459
-
460
->>>>>>> .theirs
461 454
     },
462
-<<<<<<< .mine
463 455
     "dialysisSolution.hemodialysis_machine": function() {
464 456
       var machine = parseInt(this.dialysisSolution.hemodialysis_machine);
465
-=======
466
-    'dialysisSolution.hemodialysis_machine': function () {
467
-      var machine = parseInt(this.dialysisSolution.hemodialysis_machine)
468
->>>>>>> .theirs
469 457
       if (isNaN(machine) || machine <= 0) {
470
-        return
458
+        return;
471 459
       }
472 460
       for (let index = 0; index < this.dialyserList.length; index++) {
473 461
         if (machine == this.dialyserList[index].id) {
474
-<<<<<<< .mine
475 462
           this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[
476 463
             index
477 464
           ].name;
478 465
           break;
479
-=======
480
-          this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[index].name
481
-          break
482
-
483
-
484
->>>>>>> .theirs
485 466
         }
486 467
       }
487 468
     },
488
-<<<<<<< .mine
489 469
     "dialysisSolution.perfusion_apparatus": function() {
490 470
       var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus);
491 471
       if (isNaN(apparatus) || apparatus <= 0) {
492 472
         return false;
493
-=======
494
-    'dialysisSolution.perfusion_apparatus': function () {
495
-      var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus)
496
-      if (isNaN(apparatus) || apparatus <= 0) {
497
-        return false
498
->>>>>>> .theirs
499 473
       }
500 474
       for (let index = 0; index < this.perfusion_apparatus.length; index++) {
501 475
         if (apparatus == this.perfusion_apparatus[index].id) {
502
-<<<<<<< .mine
503 476
           this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[
504 477
             index
505 478
           ].name;
506 479
           break;
507
-=======
508
-          this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[index].name
509
-          break
510
-
511
-
512
->>>>>>> .theirs
513 480
         }
514 481
       }
515 482
     },
516
-<<<<<<< .mine
517 483
     "dialysisSolution.replacement_way": function() {
518 484
       var way = parseInt(this.dialysisSolution.replacement_way);
519 485
       if (isNaN(way) || way <= 0) {
520 486
         return false;
521
-=======
522
-    'dialysisSolution.replacement_way': function () {
523
-      var way = parseInt(this.dialysisSolution.replacement_way)
524
-      if (isNaN(way) || way <= 0) {
525
-        return false
526
->>>>>>> .theirs
527 487
       }
528 488
       for (let index = 0; index < this.replacementWays.length; index++) {
529 489
         if (way == this.replacementWays[index].id) {
530
-<<<<<<< .mine
531 490
           this.dialysisSolution.replacement_way_name = this.replacementWays[
532 491
             index
533 492
           ].name;
534 493
           break;
535
-=======
536
-          this.dialysisSolution.replacement_way_name = this.replacementWays[index].name
537
-          break
538
-
539
-
540
->>>>>>> .theirs
541 494
         }
542 495
       }
543 496
     }
@@ -558,36 +511,31 @@ export default {
558 511
   //   }
559 512
 
560 513
   // },
561
-  created () {
562
-    this.doctor = this.$store.getters.user.user.user_name
563
-    this.modeOptions = this.$store.getters.treatment_mode
564
-    this.perfusion_apparatus = this.$store.getters.perfusion_apparatus
565
-    this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit
566
-    this.replacementWays = this.$store.getters.replacement_ways
514
+  created() {
515
+    this.doctor = this.$store.getters.user.user.user_name;
516
+    this.modeOptions = this.$store.getters.treatment_mode;
517
+    this.perfusion_apparatus = this.$store.getters.perfusion_apparatus;
518
+    this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
519
+    this.replacementWays = this.$store.getters.replacement_ways;
567 520
 
568 521
     for (var modeOne in this.modeOptions) {
569
-      this.modeList.push(this.modeOptions[modeOne])
522
+      this.modeList.push(this.modeOptions[modeOne]);
570 523
     }
571 524
     for (var one in this.anticoagulantsConfit) {
572
-      this.anticoagulantsConfitList.push(this.anticoagulantsConfit[one])
525
+      this.anticoagulantsConfitList.push(this.anticoagulantsConfit[one]);
573 526
     }
574 527
 
575
-    this.patient = this.patient_prop
528
+    this.patient = this.patient_prop;
576 529
 
577 530
     // console.log("this.solution_prop",this.solution_prop);
578 531
     if (this.solution_prop != null && this.solution_prop.id != "") {
579 532
       for (const key in this.solution_prop) {
580
-        this.dialysisSolution[key] = this.solution_prop[key]
533
+        this.dialysisSolution[key] = this.solution_prop[key];
581 534
       }
582 535
     }
583 536
 
584
-<<<<<<< .mine
585 537
     this.dialyserList = this.machines_prop;
586 538
   }
587
-=======
588
-    this.dialyserList = this.machines_prop
589
-  }
590
->>>>>>> .theirs
591 539
   // data() {
592 540
   //   return {
593 541
   //     show_two_menu: false
@@ -609,7 +557,7 @@ export default {
609 557
   //     this.show_two_menu = true;
610 558
   //   }
611 559
   // }
612
-}
560
+};
613 561
 </script>
614 562
 
615 563
 <style style="stylesheet/scss" lang="scss" scoped>

+ 15 - 103
src/pages/main/dialog/OrdersDialog.vue View File

@@ -21,7 +21,8 @@
21 21
           @click="modifyExecAdvice"
22 22
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
23 23
         >修改执行医嘱</span>
24
-        <span v-if="template_id != 6"
24
+        <span
25
+          v-if="template_id != 6"
25 26
           @click="checkAdvice"
26 27
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || (this.$store.getters.user.user.user_type == 2 && !isPremission) }"
27 28
         >医嘱核对</span>
@@ -83,27 +84,16 @@
83 84
                 >
84 85
                   <div class="txt">
85 86
                     <span>{{advice.advice_name }}</span>
86
-<<<<<<< .mine
87 87
                     <span
88 88
                       v-if="advice.advice_desc"
89
-                    >{{ advice.advice_desc }}{{advice.drug_spec_unit}}</span>
89
+                    >({{ advice.advice_desc }}{{advice.drug_spec_unit}})</span>
90 90
                     <span
91 91
                       v-if="advice.prescribing_number"
92
-                    >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
92
+                    >&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}})</span>
93 93
                     <span
94
-                      v-if="advice.single_dose"
94
+                      v-if="advice.single_dose && template_id != 6"
95 95
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
96
-=======
97
-                    <span v-if="advice.advice_desc">({{ advice.advice_desc }}{{advice.drug_spec_unit}})</span>
98
-                    <span v-if="advice.prescribing_number">&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}})</span>
99
-                    <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
100
-
101
-
102
-
103
-
104 96
 
105
-
106
->>>>>>> .theirs
107 97
                     <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
108 98
                     <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
109 99
                     <span
@@ -246,6 +236,7 @@ export default {
246 236
   data() {
247 237
     return {
248 238
       isShowDialog: true,
239
+      template_id: 0,
249 240
       isShowExce: true,
250 241
       isShowMofifyExce: false,
251 242
       title: "临时医嘱",
@@ -276,11 +267,11 @@ export default {
276 267
     };
277 268
   },
278 269
   created() {
270
+    this.template_id = this.$store.getters.user.template_info.template_id;
279 271
     var date = this.$route.query && this.$route.query.date;
280 272
     date *= 1000;
281 273
     var newDate = new Date(date);
282 274
 
283
-<<<<<<< .mine
284 275
     var y = newDate.getFullYear();
285 276
     var m = newDate.getMonth() + 1;
286 277
     var d = newDate.getDate();
@@ -293,79 +284,12 @@ export default {
293 284
     this.record_date =
294 285
       y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
295 286
 
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
-
316
-=======
317
-    },
318
-    data () {
319
-      return {
320
-        isShowDialog: true,
321
-        template_id: 0,
322
-        isShowExce: true,
323
-        isShowMofifyExce: false,
324
-        title: '临时医嘱',
325
-        index: 0,
326
-        doctor: '',
327
-        adviceTemplates: [],
328
-        drugOptions: {},
329
-        deliveryWayOptions: [],
330
-        executionFrequencyOptions: [],
331
-        unitsOption: [],
332
-        unitsObj: [],
333
-        record_date: '',
334
-        nowExecTime: new Date(),
335
-        patient: {
336
-          id: 0
337
-        },
338
-        admin_users: [],
339
-        adviceList: [],
340
-        parent_id: 0,
341
-        current_select_object: -1,
342
-        current_group_index: -1,
343
-        current_advice_index: -1,
344
-        current_advice: null,
345
-        currentAdviceIdsStr: '',
346
-        currentAdvices: [],
347
-        currentSubAdvices: [],
348
-        isPremission:false,
349
->>>>>>> .theirs
350
-
351
-<<<<<<< .mine
352 287
     this.patient = this.patient_prop;
353 288
     this.adviceList = this.advice_list_prop;
354 289
     this.admin_users = this.admin_users_prop;
355 290
     this.doctor = this.$store.getters.user.user.user_name;
356 291
     this.getAdviceConfig();
357 292
 
358
-
359
-=======
360
-      }
361
-    },
362
-    created () {
363
-      this.template_id = this.$store.getters.user.template_info.template_id
364
-      var date = this.$route.query && this.$route.query.date
365
-      date *= 1000
366
-      var newDate = new Date(date)
367
->>>>>>> .theirs
368
-
369 293
     this.unitsOption = getDataConfig("hemodialysis", "units");
370 294
     for (var index in this.unitsOption) {
371 295
       this.unitsObj[this.unitsOption[index].id] = this.unitsOption[index];
@@ -407,12 +331,13 @@ export default {
407 331
 
408 332
   methods: {
409 333
     modifyExecAdvice: function() {
410
-      if (!this.isPremission) {
411
-        Toast.fail("你没有权限修改医嘱!");
412
-      } else {
413
-        this.nowExecTime = new Date(this.currentAdvices[0].start_time * 1000);
414
-        this.$refs.mofify_exec_time.open();
415
-      }
334
+      // if(!this.isPremission){
335
+      //   Toast.fail('你没有权限修改医嘱!')
336
+      // }else{
337
+      this.nowExecTime = new Date(this.currentAdvices[0].start_time * 1000);
338
+      this.$refs.mofify_exec_time.open();
339
+
340
+      // }
416 341
     },
417 342
     didCreateAdvices: function(advices) {
418 343
       if (advices.length == 0) {
@@ -422,26 +347,13 @@ export default {
422 347
         advices[i]["is_selected"] = 0;
423 348
       }
424 349
 
425
-<<<<<<< .mine
426 350
       var new_group = Object.assign(
427 351
         {},
428 352
         {
429 353
           group_no: 0,
430 354
           start_time: 0,
431 355
           advices: []
432
-
433
-
434
-=======
435
-    methods: {
436
-      modifyExecAdvice: function () {
437
-        // if(!this.isPremission){
438
-        //   Toast.fail('你没有权限修改医嘱!')
439
-        // }else{
440
-          this.nowExecTime = new Date(this.currentAdvices[0].start_time * 1000)
441
-          this.$refs.mofify_exec_time.open()
442
-
443
->>>>>>> .theirs
444
-        // }
356
+        }
445 357
       );
446 358
       new_group.group_no = advices[0].groupno;
447 359
       new_group.start_time = advices[0].start_time;

+ 80 - 270
src/pages/main/index.vue View File

@@ -10,6 +10,8 @@
10 10
 </template>
11 11
 
12 12
 
13
+
14
+
13 15
 <script>
14 16
 import RecordPage from "./RecordPage";
15 17
 import SideBar from "@/pages/layout/SideBar";
@@ -37,312 +39,120 @@ export default {
37 39
   },
38 40
   methods: {
39 41
     requestScheduals() {
40
-      var date = parseTime(Date.parse(new Date()), "{y}-{m}-{d}");
41
-      getWaitingScheduals({ date: date }).then(rs => {
42
-        var resp = rs.data;
43
-        // console.log(resp);
44
-        if (resp.state == 1) {
45
-          var scheduals = resp.data.scheduals;
46
-          this.scheduals = scheduals;
47
-          console.log(this.scheduals);
48
-          let doctorAdvice = [];
49
-          for (let i = 0; i < this.scheduals.length; i++) {
50
-            for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
42
+      var storedata = this.$store.getters.waitscheduals;
43
+      var scheduals = storedata.waitscheduals;
44
+      if (Object.keys(storedata).length > 0) {
45
+        this.scheduals = scheduals;
46
+        console.log(this.scheduals);
47
+        let doctorAdvice = [];
48
+        for (let i = 0; i < this.scheduals.length; i++) {
49
+          for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
50
+            if (this.scheduals[i].dialysis_order == null) {
51 51
               if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
52 52
                 doctorAdvice.push(this.scheduals[i].doctor_advice[y]);
53 53
               }
54 54
             }
55 55
           }
56
-
57
-          const sorted = this.groupBy(doctorAdvice, function(item) {
58
-            return [item.groupno];
59
-          });
60
-
61
-          this.unReadWaitNum = sorted.length;
62
-        } else {
63
-          this.$toast({
64
-            message: resp.msg
65
-          });
66 56
         }
67
-      });
68
-    },
69
-<<<<<<< .mine
70
-    requestDialysisScheduals() {
71
-      var date = this.$store.getters.app.dialysis_area.schedule_date;
72
-      var type = 0;
73
-      getDialysisScheduals({ type: type, date: parseTime(date, "{y}-{m}-{d}") })
74
-        .then(rs => {
57
+
58
+        const sorted = this.groupBy(doctorAdvice, function(item) {
59
+          return [item.groupno];
60
+        });
61
+        this.unReadWaitNum = sorted.length;
62
+      } else {
63
+        var date = parseTime(Date.parse(new Date()), "{y}-{m}-{d}");
64
+        getWaitingScheduals({ date: date }).then(rs => {
75 65
           var resp = rs.data;
66
+          this.$store.dispatch("SetRequestScheduals", { resp });
67
+          // console.log(resp);
76 68
           if (resp.state == 1) {
77 69
             var scheduals = resp.data.scheduals;
70
+            this.scheduals = scheduals;
71
+            console.log(this.scheduals);
78 72
             let doctorAdvice = [];
79
-            for (let index = 0; index < scheduals.length; index++) {
80
-              const schedual = scheduals[index];
81
-              if (schedual.dialysis_order == null) {
82
-                continue;
83
-              }
84
-              for (let y = 0; y < schedual.doctor_advice.length; y++) {
85
-                if (schedual.doctor_advice[y].execution_state == 2) {
86
-                  doctorAdvice.push(schedual.doctor_advice[y]);
87
-=======
88
-    methods: {
89
-
90
-      requestScheduals () {
91
-        var storedata = this.$store.getters.waitscheduals
92
-        var scheduals = storedata.waitscheduals
93
-        if (Object.keys(storedata).length > 0){
94
-              this.scheduals = scheduals
95
-              console.log(this.scheduals)
96
-              let doctorAdvice = []
97
-              for (let i = 0; i < this.scheduals.length; i++) {
98
-                for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
99
-                  if(this.scheduals[i].dialysis_order == null ){
100
-                    if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
101
-                      doctorAdvice.push(this.scheduals[i].doctor_advice[y])
102
-                    }
73
+            for (let i = 0; i < this.scheduals.length; i++) {
74
+              for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
75
+                if (this.scheduals[i].dialysis_order == null) {
76
+                  if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
77
+                    doctorAdvice.push(this.scheduals[i].doctor_advice[y]);
103 78
                   }
104
-
105
->>>>>>> .theirs
106 79
                 }
107 80
               }
81
+            }
108 82
 
109
-<<<<<<< .mine
110 83
             const sorted = this.groupBy(doctorAdvice, function(item) {
111 84
               return [item.groupno];
112 85
             });
113 86
 
114
-=======
115
-              const sorted = this.groupBy(doctorAdvice, function (item) {
116
-                return [item.groupno]
117
-              })
118
-              this.unReadWaitNum = sorted.length
119
->>>>>>> .theirs
120
-
121
-<<<<<<< .mine
122
-            this.unReadDialysisNum = sorted.length;
87
+            this.unReadWaitNum = sorted.length;
123 88
           } else {
124 89
             this.$toast({
125 90
               message: resp.msg
126 91
             });
127 92
           }
128
-        })
129
-        .catch(v => {});
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
-
93
+        });
94
+      }
95
+    },
96
+    requestDialysisScheduals() {
97
+      var storedata = this.$store.getters.scheduals;
98
+      var scheduals = storedata.scheduals;
99
+      if (Object.keys(storedata).length > 0) {
100
+        let doctorAdvice = [];
101
+        for (let index = 0; index < scheduals.length; index++) {
102
+          const schedual = scheduals[index];
103
+          if (schedual.dialysis_order == null) {
104
+            continue;
105
+          }
106
+          for (let y = 0; y < schedual.doctor_advice.length; y++) {
107
+            if (schedual.doctor_advice[y].execution_state == 2) {
108
+              doctorAdvice.push(schedual.doctor_advice[y]);
109
+            }
110
+          }
111
+        }
232 112
 
233
-=======
234
-        } else {
235
-          var date = parseTime(Date.parse(new Date()), '{y}-{m}-{d}')
236
-          getWaitingScheduals({date: date}).then(rs => {
237
-            var resp = rs.data
238
-             this.$store.dispatch("SetRequestScheduals",{resp})
239
-            // console.log(resp);
113
+        const sorted = this.groupBy(doctorAdvice, function(item) {
114
+          return [item.groupno];
115
+        });
116
+
117
+        this.unReadDialysisNum = sorted.length;
118
+      } else {
119
+        var date = this.$store.getters.app.dialysis_area.schedule_date;
120
+        var type = 0;
121
+        getDialysisScheduals({
122
+          type: type,
123
+          date: parseTime(date, "{y}-{m}-{d}")
124
+        })
125
+          .then(rs => {
126
+            var resp = rs.data;
127
+            this.$store.dispatch("SetRequestDialysisScheduals", { resp });
240 128
             if (resp.state == 1) {
241
-              var scheduals = resp.data.scheduals
242
-              this.scheduals = scheduals
243
-              console.log(this.scheduals)
244
-              let doctorAdvice = []
245
-              for (let i = 0; i < this.scheduals.length; i++) {
246
-                for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
247
-                  if(this.scheduals[i].dialysis_order == null ){
248
-                    if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
249
-                      doctorAdvice.push(this.scheduals[i].doctor_advice[y])
250
-                    }
129
+              var scheduals = resp.data.scheduals;
130
+              let doctorAdvice = [];
131
+              for (let index = 0; index < scheduals.length; index++) {
132
+                const schedual = scheduals[index];
133
+                if (schedual.dialysis_order == null) {
134
+                  continue;
135
+                }
136
+                for (let y = 0; y < schedual.doctor_advice.length; y++) {
137
+                  if (schedual.doctor_advice[y].execution_state == 2) {
138
+                    doctorAdvice.push(schedual.doctor_advice[y]);
251 139
                   }
252 140
                 }
253 141
               }
254 142
 
255
-              const sorted = this.groupBy(doctorAdvice, function (item) {
256
-                return [item.groupno]
257
-              })
258
-
259
-
260
-              this.unReadWaitNum = sorted.length
143
+              const sorted = this.groupBy(doctorAdvice, function(item) {
144
+                return [item.groupno];
145
+              });
261 146
 
147
+              this.unReadDialysisNum = sorted.length;
262 148
             } else {
263 149
               this.$toast({
264 150
                 message: resp.msg
265
-              })
266
-            }
267
-          })
268
-        }
269
-      },
270
-      requestDialysisScheduals () {
271
-        var storedata = this.$store.getters.scheduals
272
-        var scheduals = storedata.scheduals
273
-        if (Object.keys(storedata).length > 0){
274
-          let doctorAdvice = []
275
-          for (let index = 0; index < scheduals.length; index++) {
276
-            const schedual = scheduals[index]
277
-            if (schedual.dialysis_order == null) {
278
-              continue
151
+              });
279 152
             }
280
-            for (let y = 0; y < schedual.doctor_advice.length; y++) {
281
-              if (schedual.doctor_advice[y].execution_state == 2) {
282
-                doctorAdvice.push(schedual.doctor_advice[y])
283
-              }
284
-            }
285
-          }
286
-
287
-          const sorted = this.groupBy(doctorAdvice, function (item) {
288
-            return [item.groupno]
289 153
           })
290
-
291
-          this.unReadDialysisNum = sorted.length
292
-        }else {
293
-          var date = this.$store.getters.app.dialysis_area.schedule_date
294
-          var type = 0
295
-          getDialysisScheduals({type: type, date: parseTime(date, '{y}-{m}-{d}')})
296
-            .then(rs => {
297
-              var resp = rs.data
298
-              this.$store.dispatch("SetRequestDialysisScheduals",{resp})
299
-              if (resp.state == 1) {
300
-                var scheduals = resp.data.scheduals
301
-                let doctorAdvice = []
302
-                for (let index = 0; index < scheduals.length; index++) {
303
-                  const schedual = scheduals[index]
304
-                  if (schedual.dialysis_order == null) {
305
-                    continue
306
-                  }
307
-                  for (let y = 0; y < schedual.doctor_advice.length; y++) {
308
-                    if (schedual.doctor_advice[y].execution_state == 2) {
309
-                      doctorAdvice.push(schedual.doctor_advice[y])
310
-                    }
311
-                  }
312
-                }
313
-
314
-                const sorted = this.groupBy(doctorAdvice, function (item) {
315
-                  return [item.groupno]
316
-                })
317
-
318
-                this.unReadDialysisNum = sorted.length
319
-
320
-              } else {
321
-                this.$toast({
322
-                  message: resp.msg
323
-                })
324
-              }
325
-            })
326
-            .catch(v => {
327
-            })
328
-          }
329
-      }, groupBy (array, f) {
330
-        const groups = {}
331
-        array.forEach(function (o) {
332
-          const group = JSON.stringify(f(o))
333
-          groups[group] = groups[group] || []
334
-          groups[group].push(o)
335
-        })
336
-        return Object.keys(groups).map(function (group) {
337
-          return groups[group]
338
-        })
339
-      },getData(){
340
-        console.log("111111")
341
-        // this.requestScheduals()
342
-        // this.requestDialysisScheduals()
154
+          .catch(v => {});
343 155
       }
344
-
345
->>>>>>> .theirs
346 156
     },
347 157
     groupBy(array, f) {
348 158
       const groups = {};

File diff suppressed because it is too large
+ 176 - 2119
src/pages/main/today/TodayTab.vue


+ 8 - 248
src/pages/main/today/acceptsAssessment.vue View File

@@ -59,11 +59,7 @@
59 59
           <span class="content">{{this.record.sick_condition_other}}</span>
60 60
         </li>
61 61
 
62
-<<<<<<< .mine
63
-        <li v-if="isShow('摄入量')">
64
-=======
65
-        <li style="height: 0.6rem;"  v-if="isShow('摄入量')">
66
->>>>>>> .theirs
62
+        <li style="height: 0.6rem;" v-if="isShow('摄入量')">
67 63
           <label>摄入量:</label>
68 64
           <span class="content">{{intakes}}</span>
69 65
         </li>
@@ -88,76 +84,42 @@
88 84
           <span class="content">{{this.record.psychological_other}}</span>
89 85
         </li>
90 86
       </ul>
91
-<<<<<<< .mine
92
-
93
-=======
94
-
95
->>>>>>> .theirs
96 87
     </div>
97 88
   </div>
98 89
 </template>
99 90
 
100 91
 <script>
101 92
 export default {
102
-  name: 'AcceptsAssessment',
103
-  data () {
93
+  name: "AcceptsAssessment",
94
+  data() {
104 95
     return {
105
-      title: '接诊评估 ',
96
+      title: "接诊评估 ",
106 97
 
107 98
       ways: {
108
-<<<<<<< .mine
109 99
         "1": "步行",
110 100
         "2": "扶行",
111 101
         "3": "轮椅",
112 102
         "4": "平车"
113
-=======
114
-        '1': '步行',
115
-        '2': '扶行',
116
-        '3': '轮椅',
117
-        '4': '平车'
118
->>>>>>> .theirs
119 103
       },
120 104
       conditions: {
121
-<<<<<<< .mine
122 105
         "1": "住院",
123 106
         "2": "门诊",
124 107
         "3": "手术期"
125
-=======
126
-        '1': '住院',
127
-        '2': '门诊',
128
-        '3': '手术期'
129
->>>>>>> .theirs
130 108
       },
131 109
       consciousnesses: {
132
-<<<<<<< .mine
133 110
         "1": "清醒",
134 111
         "2": "嗜睡",
135
-        "3": "昏迷"
136
-
137
-=======
138
-        '1': '清醒',
139
-        '2': '嗜睡',
140
-        '3': '昏迷',
141
-        '4': '模糊'
142
->>>>>>> .theirs
112
+        "3": "昏迷",
113
+        "4": "模糊"
143 114
       },
144 115
       appetites: {
145
-<<<<<<< .mine
146 116
         "1": "正常",
147 117
         "2": "减退",
148 118
         "3": "恶心",
149 119
         "4": "呕吐",
150 120
         "5": "腹泻"
151
-=======
152
-        '1': '正常',
153
-        '2': '减退',
154
-        '3': '恶心',
155
-        '4': '呕吐',
156
-        '5': '腹泻'
157
->>>>>>> .theirs
158 121
       },
159 122
       postures: {
160
-<<<<<<< .mine
161 123
         "1": "自动体位",
162 124
         "2": "平卧位",
163 125
         "3": "半卧位",
@@ -192,46 +154,8 @@ export default {
192 154
         "2": "约束带",
193 155
         "3": "床栏",
194 156
         "4": "加强宣教"
195
-
196
-=======
197
-        '1': '自动体位',
198
-        '2': '平卧位',
199
-        '3': '半卧位',
200
-        '4': '端坐位',
201
-        '5': '躁动不安'
202
-      },
203
-sick_condition: {
204
-        '1': '一般',
205
-        '2': '重',
206
-        '3': '危'
207
-      },
208
-danger_level: {
209
-        '1': '无',
210
-        '2': '低风险',
211
-        '3': '中度风险',
212
-        '4': '高风险'
213
-
214
-      },
215
-intake: {
216
-        '1': '正常',
217
-        '2': '减少'
218
-      }, 
219
-nutrition: {
220
-        '1': '正常',
221
-        '2': '营养不良'
222
-      }, 
223
-psychological_assessment: {
224
-        '1': '正常',
225
-        '2': '异常'
226
-      }, 
227
-precautionss: {
228
-        '1': '镇定剂',
229
-        '2': '约束带',
230
-        '3': '床栏',
231
-        '4': '加强宣教'
232
->>>>>>> .theirs
233 157
       }
234
-    }
158
+    };
235 159
   },
236 160
   props: {
237 161
     record: {
@@ -239,233 +163,100 @@ precautionss: {
239 163
     }
240 164
   },
241 165
   computed: {
242
-<<<<<<< .mine
243 166
     way: function() {
244 167
       if (this.record == null || this.record.id == "") {
245 168
         return "";
246
-=======
247
-    way: function () {
248
-      if (this.record == null || this.record.id == '') {
249
-        return ''
250
->>>>>>> .theirs
251 169
       } else {
252
-<<<<<<< .mine
253 170
         return this.ways[this.record.way] == undefined
254 171
           ? ""
255 172
           : this.ways[this.record.way] + "";
256
-=======
257
-        return this.ways[this.record.way] == undefined ? '' : (this.ways[this.record.way] + '')
258
-
259
-
260
->>>>>>> .theirs
261 173
       }
262 174
     },
263
-<<<<<<< .mine
264 175
     condition: function() {
265 176
       if (this.record == null || this.record.id == "") {
266 177
         return "";
267
-=======
268
-    condition: function () {
269
-      if (this.record == null || this.record.id == '') {
270
-        return ''
271
->>>>>>> .theirs
272 178
       } else {
273
-<<<<<<< .mine
274 179
         return this.conditions[this.record.condition] == undefined
275 180
           ? ""
276 181
           : this.conditions[this.record.condition] + "";
277
-=======
278
-        return this.conditions[this.record.condition] == undefined ? '' : this.conditions[this.record.condition] + ''
279
-
280
-
281
->>>>>>> .theirs
282 182
       }
283 183
     },
284
-<<<<<<< .mine
285 184
     consciousness: function() {
286 185
       if (this.record == null || this.record.id == "") {
287 186
         return "";
288
-=======
289
-    consciousness: function () {
290
-      if (this.record == null || this.record.id == '') {
291
-        return ''
292
->>>>>>> .theirs
293 187
       } else {
294
-<<<<<<< .mine
295 188
         return this.consciousnesses[this.record.consciousness] == undefined
296 189
           ? ""
297 190
           : this.consciousnesses[this.record.consciousness] + "";
298
-=======
299
-        return this.consciousnesses[this.record.consciousness] == undefined ? '' : this.consciousnesses[this.record.consciousness] + ''
300
-
301
-
302
->>>>>>> .theirs
303 191
       }
304 192
     },
305
-<<<<<<< .mine
306 193
     appetite: function() {
307 194
       if (this.record == null || this.record.id == "") {
308 195
         return "";
309
-=======
310
-    appetite: function () {
311
-      if (this.record == null || this.record.id == '') {
312
-        return ''
313
->>>>>>> .theirs
314 196
       } else {
315
-<<<<<<< .mine
316 197
         return this.appetites[this.record.appetite] == undefined
317 198
           ? ""
318 199
           : this.appetites[this.record.appetite] + "";
319
-=======
320
-        return this.appetites[this.record.appetite] == undefined ? '' : this.appetites[this.record.appetite] + ''
321
-
322
-
323
->>>>>>> .theirs
324 200
       }
325 201
     },
326
-<<<<<<< .mine
327 202
     posture: function() {
328 203
       if (this.record == null || this.record.id == "") {
329 204
         return "";
330
-=======
331
-    posture: function () {
332
-      if (this.record == null || this.record.id == '') {
333
-        return ''
334
->>>>>>> .theirs
335 205
       } else {
336
-<<<<<<< .mine
337 206
         return this.postures[this.record.posture] == undefined
338 207
           ? ""
339 208
           : this.postures[this.record.posture] + "";
340
-=======
341
-        return this.postures[this.record.posture] == undefined ? '' : this.postures[this.record.posture] + ''
342
-
343
-
344
->>>>>>> .theirs
345 209
       }
346
-<<<<<<< .mine
347 210
     },
348 211
     sickCondition: function() {
349 212
       if (this.record == null || this.record.id == "") {
350 213
         return "";
351
-=======
352
-    }, 
353
-sickCondition: function () {
354
-      if (this.record == null || this.record.id == '') {
355
-        return ''
356
->>>>>>> .theirs
357 214
       } else {
358
-<<<<<<< .mine
359 215
         return this.sick_condition[this.record.sick_condition] == undefined
360 216
           ? ""
361 217
           : this.sick_condition[this.record.sick_condition] + "";
362
-=======
363
-        return this.sick_condition[this.record.sick_condition] == undefined ? '' : this.sick_condition[this.record.sick_condition] + ''
364
-
365
-
366
->>>>>>> .theirs
367 218
       }
368
-<<<<<<< .mine
369 219
     },
370 220
     dangerLevel: function() {
371 221
       if (this.record == null || this.record.id == "") {
372 222
         return "";
373
-=======
374
-    }, 
375
-dangerLevel: function () {
376
-      if (this.record == null || this.record.id == '') {
377
-        return ''
378
->>>>>>> .theirs
379 223
       } else {
380
-<<<<<<< .mine
381 224
         return this.danger_level[this.record.danger_level] == undefined
382 225
           ? ""
383 226
           : this.danger_level[this.record.danger_level] + "";
384
-=======
385
-        return this.danger_level[this.record.danger_level] == undefined ? '' : this.danger_level[this.record.danger_level] + ''
386
-
387
-
388
->>>>>>> .theirs
389 227
       }
390
-<<<<<<< .mine
391 228
     },
392 229
     precautions: function() {
393 230
       if (this.record == null || this.record.id == "") {
394 231
         return "";
395
-=======
396
-    }, 
397
-precautions: function () {
398
-      if (this.record == null || this.record.id == '') {
399
-        return ''
400
->>>>>>> .theirs
401 232
       } else {
402
-<<<<<<< .mine
403 233
         return this.precautionss[this.record.precaution] == undefined
404 234
           ? ""
405 235
           : this.precautionss[this.record.precaution] + "";
406
-=======
407
-        return this.precautionss[this.record.precaution] == undefined ? '' : this.precautionss[this.record.precaution] + ''
408
-
409
-
410
->>>>>>> .theirs
411 236
       }
412
-<<<<<<< .mine
413 237
     },
414 238
     intakes: function() {
415 239
       if (this.record == null || this.record.id == "") {
416 240
         return "";
417
-=======
418
-    }, 
419
-intakes: function () {
420
-      if (this.record == null || this.record.id == '') {
421
-        return ''
422
->>>>>>> .theirs
423 241
       } else {
424
-<<<<<<< .mine
425 242
         return this.intake[this.record.intake] == undefined
426 243
           ? ""
427 244
           : this.intake[this.record.intake] + "";
428
-=======
429
-        return this.intake[this.record.intake] == undefined ? '' : this.intake[this.record.intake] + ''
430
-
431
-
432
->>>>>>> .theirs
433 245
       }
434
-<<<<<<< .mine
435 246
     },
436 247
     nutritions: function() {
437 248
       if (this.record == null || this.record.id == "") {
438 249
         return "";
439
-=======
440
-    }, 
441
-nutritions: function () {
442
-      if (this.record == null || this.record.id == '') {
443
-        return ''
444
->>>>>>> .theirs
445 250
       } else {
446
-<<<<<<< .mine
447 251
         return this.nutrition[this.record.nutrition] == undefined
448 252
           ? ""
449 253
           : this.nutrition[this.record.nutrition] + "";
450
-=======
451
-        return this.nutrition[this.record.nutrition] == undefined ? '' : this.nutrition[this.record.nutrition] + ''
452
-
453
-
454
->>>>>>> .theirs
455 254
       }
456
-<<<<<<< .mine
457 255
     },
458 256
     psychologicalAssessment: function() {
459 257
       if (this.record == null || this.record.id == "") {
460 258
         return "";
461
-=======
462
-    }, 
463
-psychologicalAssessment: function () {
464
-      if (this.record == null || this.record.id == '') {
465
-        return ''
466
->>>>>>> .theirs
467 259
       } else {
468
-<<<<<<< .mine
469 260
         return this.psychological_assessment[
470 261
           this.record.psychological_assessment
471 262
         ] == undefined
@@ -473,28 +264,13 @@ psychologicalAssessment: function () {
473 264
           : this.psychological_assessment[
474 265
               this.record.psychological_assessment
475 266
             ] + "";
476
-=======
477
-        return this.psychological_assessment[this.record.psychological_assessment] == undefined ? '' : this.psychological_assessment[this.record.psychological_assessment] + ''
478
-
479
-
480
-
481
-
482
-
483
-
484
->>>>>>> .theirs
485 267
       }
486 268
     }
487 269
   },
488 270
   methods: {
489
-<<<<<<< .mine
490 271
     isShow(name) {
491 272
       var filedList = this.$store.getters.user.fileds;
492
-=======
493
-    isShow (name) {
494
-      var filedList = this.$store.getters.user.fileds
495
->>>>>>> .theirs
496 273
 
497
-<<<<<<< .mine
498 274
       for (let i = 0; i < filedList.length; i++) {
499 275
         if (
500 276
           filedList[i].module == 2 &&
@@ -502,28 +278,12 @@ psychologicalAssessment: function () {
502 278
           filedList[i].is_show == 1
503 279
         ) {
504 280
           return true;
505
-=======
506
-      for (let i = 0; i < filedList.length; i++) {
507
-        if (filedList[i].module == 2 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
508
-          return true
509
-
510
-
511
-
512
-
513
->>>>>>> .theirs
514 281
         }
515 282
       }
516
-<<<<<<< .mine
517 283
       return false;
518 284
     }
519
-
520
-=======
521
-      return false
522
-    }
523
-
524
->>>>>>> .theirs
525 285
   }
526
-}
286
+};
527 287
 </script>
528 288
 
529 289
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 25 - 38
src/pages/main/today/detailsInfo.vue View File

@@ -58,12 +58,12 @@
58 58
 </template>
59 59
 
60 60
 <script>
61
-import { parseTime } from '@/utils'
61
+import { parseTime } from "@/utils";
62 62
 import { jsGetAge } from "@/utils/tools";
63 63
 
64 64
 export default {
65
-  name: 'DetailsInfo',
66
-  data () {
65
+  name: "DetailsInfo",
66
+  data() {
67 67
     return {
68 68
       // patient: {
69 69
       //   name: "",
@@ -78,18 +78,18 @@ export default {
78 78
       //   number: "",
79 79
       // },
80 80
       steps: [
81
-        { title: '透析处方' },
82
-        { title: '接诊评估' },
83
-        { title: '透前评估' },
84
-        { title: '临时医嘱' },
85
-        { title: '透析上机' },
86
-        { title: '双人查对' },
87
-        { title: '透析监测' },
88
-        { title: '透析下机' },
89
-        { title: '透后评估' },
90
-        { title: '治疗小结' }
81
+        { title: "透析处方" },
82
+        { title: "接诊评估" },
83
+        { title: "透前评估" },
84
+        { title: "临时医嘱" },
85
+        { title: "透析上机" },
86
+        { title: "双人查对" },
87
+        { title: "透析监测" },
88
+        { title: "透析下机" },
89
+        { title: "透后评估" },
90
+        { title: "治疗小结" }
91 91
       ]
92
-    }
92
+    };
93 93
   },
94 94
   props: {
95 95
     step_data: {
@@ -97,16 +97,16 @@ export default {
97 97
     },
98 98
     patient: {
99 99
       type: Object,
100
-      default: function () {
100
+      default: function() {
101 101
         return {
102
-          name: '',
102
+          name: "",
103 103
           gender: 1,
104
-          birthday: '',
105
-          dialysis_no: '',
104
+          birthday: "",
105
+          dialysis_no: "",
106 106
           // device_number: "",
107
-          source: '',
108
-          admission_number: ''
109
-        }
107
+          source: "",
108
+          admission_number: ""
109
+        };
110 110
       }
111 111
     },
112 112
     device_number: {
@@ -114,31 +114,18 @@ export default {
114 114
     }
115 115
   },
116 116
   computed: {
117
-<<<<<<< .mine
118 117
     dialysis_date: function() {
119 118
       return parseTime(this.$route.query.date, "{y}/{m}/{d}");
120
-=======
121
-    dialysis_date: function () {
122
-      return parseTime(this.$route.query.date, '{y}/{m}/{d}')
123
->>>>>>> .theirs
124 119
     },
125
-<<<<<<< .mine
126 120
     age: function() {
127 121
       if (this.patient.age == 0) {
128 122
         return jsGetAge(parseTime(this.patient.birthday, "{y}-{m}-{d}"), "-");
129 123
       } else {
130 124
         return this.patient.age;
131
-=======
132
-    age: function () {
133
-      if (this.patient.age == 0) {
134
-        return jsGetAge(parseTime(this.patient.birthday, '{y}-{m}-{d}'), '-')
135
-      } else {
136
-        return this.patient.age
137
->>>>>>> .theirs
138 125
       }
139 126
     },
140
-    source: function () {
141
-      return this.patient.source == 1 ? '门诊' : '住院'
127
+    source: function() {
128
+      return this.patient.source == 1 ? "门诊" : "住院";
142 129
     }
143 130
   },
144 131
   methods: {
@@ -162,8 +149,8 @@ export default {
162 149
     //   }
163 150
     // }
164 151
   },
165
-  created () {}
166
-}
152
+  created() {}
153
+};
167 154
 </script>
168 155
 
169 156
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 0 - 82
src/pages/main/today/dialysisComputer.vue View File

@@ -31,24 +31,14 @@
31 31
           <span class="content">{{stage}}</span>
32 32
         </li>
33 33
       </ul>
34
-<<<<<<< .mine
35
-
36
-=======
37
-
38
->>>>>>> .theirs
39 34
     </div>
40 35
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
41 36
   </div>
42 37
 </template>
43 38
 
44 39
 <script>
45
-<<<<<<< .mine
46 40
 import { parseTime } from "@/utils";
47
-=======
48
-import {parseTime} from '@/utils'
49
->>>>>>> .theirs
50 41
 
51
-<<<<<<< .mine
52 42
 export default {
53 43
   name: "DialysisComputer",
54 44
   data() {
@@ -71,78 +61,25 @@ export default {
71 61
     device_number: function() {
72 62
       if (this.record == null || this.record.id == "") {
73 63
         return "-";
74
-=======
75
-export default {
76
-  name: 'DialysisComputer',
77
-  data () {
78
-    return {
79
-      title: '透析上机 '
80
-    }
81
-  },
82
-  props: {
83
-    record: {
84
-      type: Object
85
-    },
86
-    admin_map: {
87
-      type: Object
88
-    },
89
-    device_number_map: {
90
-      type: Object
91
-    }
92
-  },
93
-  computed: {
94
-    device_number: function () {
95
-      if (this.record == null || this.record.id == '') {
96
-        return '-'
97
->>>>>>> .theirs
98 64
       }
99
-<<<<<<< .mine
100 65
       return this.device_number_map[this.record.bed_id] == null
101 66
         ? ""
102 67
         : this.device_number_map[this.record.bed_id].number;
103
-=======
104
-      return this.device_number_map[this.record.bed_id] == null ? '' : this.device_number_map[this.record.bed_id].number
105
-
106
-
107
->>>>>>> .theirs
108 68
     },
109
-<<<<<<< .mine
110 69
     nurse: function() {
111 70
       if (this.record == null || this.record.id == "") {
112 71
         return "-";
113
-=======
114
-    nurse: function () {
115
-      if (this.record == null || this.record.id == '') {
116
-        return '-'
117
->>>>>>> .theirs
118 72
       }
119
-<<<<<<< .mine
120 73
       return this.admin_map[this.record.start_nurse] == null
121 74
         ? ""
122 75
         : this.admin_map[this.record.start_nurse].name;
123
-=======
124
-      return this.admin_map[this.record.start_nurse] == null ? '' : this.admin_map[this.record.start_nurse].name
125
-
126
-
127
->>>>>>> .theirs
128 76
     },
129
-<<<<<<< .mine
130 77
     stage: function() {
131 78
       if (this.record == null || this.record.id == "") {
132 79
         return "未上机";
133
-=======
134
-    stage: function () {
135
-      if (this.record == null || this.record.id == '') {
136
-        return '未上机'
137
->>>>>>> .theirs
138 80
       }
139
-<<<<<<< .mine
140 81
       return this.record.stage == 1 ? "已上机" : "已下机";
141
-=======
142
-      return this.record.stage == 1 ? '已上机' : '已下机'
143
->>>>>>> .theirs
144 82
     },
145
-<<<<<<< .mine
146 83
     start_time: function() {
147 84
       if (this.record == null || this.record.id == "") {
148 85
         return "-";
@@ -160,25 +97,6 @@ export default {
160 97
   },
161 98
   methods: {}
162 99
 };
163
-=======
164
-start_time: function () {
165
-      if (this.record == null || this.record.id == '') {
166
-        return '-'
167
-      }
168
-      return parseTime(this.record.start_time, '{y}年{m}月{d}日 {h}时{i}分')
169
-    }, 
170
-puncture_nurse: function () {
171
-      if (this.record == null || this.record.id == '') {
172
-        return '-'
173
-      }
174
-      return this.admin_map[this.record.puncture_nurse] == null ? '' : this.admin_map[this.record.puncture_nurse].name
175
-    }
176
-  },
177
-  methods: {}
178
-}
179
-
180
-
181
->>>>>>> .theirs
182 100
 </script>
183 101
 
184 102
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 3 - 54
src/pages/main/today/dialysisOff.vue View File

@@ -25,29 +25,14 @@
25 25
 </template>
26 26
 
27 27
 <script>
28
-<<<<<<< .mine
29 28
 import { parseTime } from "@/utils";
30
-=======
31
-import { parseTime } from '@/utils';
32
->>>>>>> .theirs
33 29
 
34
-<<<<<<< .mine
35 30
 export default {
36 31
   name: "DialysisComputer",
37 32
   data() {
38
-=======
39
-export default {
40
-  name: 'DialysisComputer',
41
-  data () {
42
->>>>>>> .theirs
43 33
     return {
44
-<<<<<<< .mine
45 34
       title: "透析下机 "
46 35
     };
47
-=======
48
-      title: '透析下机 '
49
-    }
50
->>>>>>> .theirs
51 36
   },
52 37
   props: {
53 38
     record: {
@@ -58,71 +43,35 @@ export default {
58 43
     }
59 44
   },
60 45
   computed: {
61
-<<<<<<< .mine
62 46
     stage: function() {
63 47
       if (this.record == null || this.record.id == "") {
64 48
         return "未上机";
65
-=======
66
-    stage: function () {
67
-      if (this.record == null || this.record.id == '') {
68
-        return '未上机'
69
->>>>>>> .theirs
70 49
       }
71
-<<<<<<< .mine
72 50
       return this.record.stage == 1 ? "未下机" : "已下机";
73
-=======
74
-      return this.record.stage == 1 ? '未下机' : '已下机'
75
->>>>>>> .theirs
76 51
     },
77
-    nurse: function () {
78
-<<<<<<< .mine
52
+    nurse: function() {
79 53
       if (this.record == null || this.record.id == "") {
80 54
         return "-";
81
-=======
82
-      if (this.record == null || this.record.id == '') {
83
-        return '-'
84
->>>>>>> .theirs
85 55
       } else if (this.record.stage == 1) {
86
-<<<<<<< .mine
87 56
         return "-";
88
-=======
89
-        return '-'
90
->>>>>>> .theirs
91 57
       } else {
92
-<<<<<<< .mine
93 58
         return this.admin_map[this.record.finish_nurse] == null
94 59
           ? ""
95 60
           : this.admin_map[this.record.finish_nurse].name;
96
-=======
97
-        return this.admin_map[this.record.finish_nurse] == null ? '' : this.admin_map[this.record.finish_nurse].name
98
-
99
-
100
->>>>>>> .theirs
101 61
       }
102
-<<<<<<< .mine
103 62
     },
104 63
     end_time: function() {
105 64
       if (this.record == null || this.record.id == "") {
106 65
         return "-";
107
-=======
108
-    }, 
109
-end_time: function () {
110
-      if (this.record == null || this.record.id == '') {
111
-        return '-'
112
->>>>>>> .theirs
113 66
       } else if (this.record.stage == 1) {
114
-<<<<<<< .mine
115 67
         return "-";
116
-=======
117
-        return '-'
118
->>>>>>> .theirs
119 68
       } else {
120
-        return parseTime(this.record.end_time, '{y}年{m}月{d}日 {h}时{i}分')
69
+        return parseTime(this.record.end_time, "{y}年{m}月{d}日 {h}时{i}分");
121 70
       }
122 71
     }
123 72
   },
124 73
   methods: {}
125
-}
74
+};
126 75
 </script>
127 76
 
128 77
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 66 - 94
src/pages/main/today/statOrder.vue View File

@@ -5,24 +5,6 @@
5 5
       <p>{{title}}</p>
6 6
       <span class="line"></span>
7 7
     </h2>
8
-<<<<<<< .mine
9
-    <div class="newDiv">
10
-      <table class="table">
11
-        <tr>
12
-          <th width="12%">开嘱医生</th>
13
-          <th width="18%">开始时间</th>
14
-          <th width="31%">医嘱内容</th>
15
-          <th width="18.6%">执行时间</th>
16
-          <th width="10.5%">执行护士</th>
17
-          <th width="9.4%">核对护士</th>
18
-        </tr>
19
-        <template v-for="(group) in advice_groups">
20
-          <tr v-for="(advice, i) in group.advices" :key="advice.id">
21
-            <td
22
-              v-if="i == 0"
23
-              :rowspan="group.advices.length"
24
-            >{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
25
-=======
26 8
     <table class="table">
27 9
       <tr>
28 10
         <th width="12%">开嘱医生</th>
@@ -34,64 +16,54 @@
34 16
       </tr>
35 17
       <template v-for="(group) in advice_groups">
36 18
         <tr v-for="(advice, i) in group.advices" :key="advice.id">
37
-            <td v-if="i == 0" :rowspan="group.advices.length">{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
38
-
39
-
19
+          <td
20
+            v-if="i == 0"
21
+            :rowspan="group.advices.length"
22
+          >{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
40 23
 
24
+          <td
25
+            v-if="i == 0"
26
+            :rowspan="group.advices.length"
27
+          >{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
41 28
 
42
->>>>>>> .theirs
29
+          <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
30
+            <span>{{advice.advice_name }}</span>
31
+            <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
32
+            <span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
33
+            <span
34
+              v-if="advice.prescribing_number"
35
+            >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
36
+            <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
37
+            <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
38
+            <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
39
+            <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
40
+          </td>
43 41
 
44
-            <td
45
-              v-if="i == 0"
46
-              :rowspan="group.advices.length"
47
-            >{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
42
+          <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
48 43
 
49
-            <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
50
-              <span>{{advice.advice_name }}</span>
51
-              <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
52
-              <span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
53
-              <span
54
-                v-if="advice.prescribing_number"
55
-              >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
56
-              <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
57
-              <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
58
-              <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
59
-              <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
60
-            </td>
44
+          <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
61 45
 
62
-            <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
63
-
64
-            <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
65
-
66
-            <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
67
-          </tr>
68
-        </template>
69
-      </table>
70
-      <div class="NoData" v-show="advice_groups.length == 0">
71
-        <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
72
-      </div>
46
+          <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
47
+        </tr>
48
+      </template>
49
+    </table>
50
+    <div class="NoData" v-show="advice_groups.length == 0">
51
+      <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
73 52
     </div>
74 53
   </div>
75 54
 </template>
76 55
 
77 56
 <script>
78
-import { parseTime } from '@/utils';
57
+import { parseTime } from "@/utils";
79 58
 
80 59
 export default {
81
-  name: 'statOrder',
82
-  data () {
60
+  name: "statOrder",
61
+  data() {
83 62
     return {
84
-<<<<<<< .mine
85 63
       title: "临时医嘱 ",
86
-      tableDate: []
87
-    };
88
-
89
-=======
90
-      title: '临时医嘱 ',
91 64
       template_id: 0,
92 65
       tableDate: []
93
-    }
94
->>>>>>> .theirs
66
+    };
95 67
   },
96 68
   props: {
97 69
     doctor_map: {
@@ -104,87 +76,87 @@ export default {
104 76
       }
105 77
     }
106 78
   },
107
-  created () {
108
-    this.template_id = this.$store.getters.user.template_info.template_id
79
+  created() {
80
+    this.template_id = this.$store.getters.user.template_info.template_id;
109 81
   },
110 82
   methods: {
111
-    setAdvices (advices) {
83
+    setAdvices(advices) {
112 84
       if (advices == null) {
113
-        advices = []
85
+        advices = [];
114 86
       }
115
-      this.tableDate.splice(0, this.tableDate.length)
116
-      this.tableDate.push(...advices)
87
+      this.tableDate.splice(0, this.tableDate.length);
88
+      this.tableDate.push(...advices);
117 89
     },
118
-    parseTime (time, layout) {
90
+    parseTime(time, layout) {
119 91
       if (time == 0) {
120
-        return '';
92
+        return "";
121 93
       }
122
-      return parseTime(time, layout)
94
+      return parseTime(time, layout);
123 95
     },
124
-    createMedicalOrder (row) {
96
+    createMedicalOrder(row) {
125 97
       if (row.parent_id > 0) {
126
-        var spliceIndex = -1
98
+        var spliceIndex = -1;
127 99
         for (let index = this.tableDate.length - 1; ; index--) {
128 100
           if (this.tableDate[index].parent_id === row.parent_id) {
129
-            spliceIndex = index
101
+            spliceIndex = index;
130 102
             break;
131 103
           } else if (this.tableDate[index].id === row.parent_id) {
132
-            spliceIndex = index
104
+            spliceIndex = index;
133 105
             break;
134 106
           }
135 107
         }
136 108
         if (spliceIndex > -1) {
137
-          spliceIndex += 1
109
+          spliceIndex += 1;
138 110
           if (spliceIndex === this.tableDate.length) {
139
-            this.tableDate.push(row)
111
+            this.tableDate.push(row);
140 112
           } else {
141
-            var swapData = this.tableDate.splice(spliceIndex)
142
-            this.tableDate.push(row)
143
-            this.tableDate = this.tableDate.concat(swapData)
113
+            var swapData = this.tableDate.splice(spliceIndex);
114
+            this.tableDate.push(row);
115
+            this.tableDate = this.tableDate.concat(swapData);
144 116
           }
145 117
         }
146 118
       } else {
147
-        this.tableDate.unshift(row)
119
+        this.tableDate.unshift(row);
148 120
       }
149 121
     },
150
-    delMedicalOrder (row) {
122
+    delMedicalOrder(row) {
151 123
       if (row.parent_id > 0) {
152
-        var rslen = this.tableDate.length
124
+        var rslen = this.tableDate.length;
153 125
         for (let i = 0; i < rslen; i++) {
154 126
           if (this.tableDate[i].id == row.id) {
155
-            this.tableDate.splice(i, 1)
127
+            this.tableDate.splice(i, 1);
156 128
             break;
157 129
           }
158 130
         }
159 131
       } else {
160
-        var resetTableData = this.tableDate
161
-        this.tableDate = []
162
-        var that = this
163
-        var rslen = resetTableData.length
132
+        var resetTableData = this.tableDate;
133
+        this.tableDate = [];
134
+        var that = this;
135
+        var rslen = resetTableData.length;
164 136
         for (let i = 0; i < rslen; i++) {
165 137
           if (
166 138
             resetTableData[i].id != row.id &&
167 139
             resetTableData[i].parent_id != row.id
168 140
           ) {
169
-            that.tableDate.push(resetTableData[i])
141
+            that.tableDate.push(resetTableData[i]);
170 142
           }
171 143
         }
172 144
       }
173 145
     },
174
-    executionMedicalOrder (row) {
175
-      var alen = this.tableDate.length
146
+    executionMedicalOrder(row) {
147
+      var alen = this.tableDate.length;
176 148
       for (let index = 0; index < alen; index++) {
177 149
         if (this.tableDate[index].id == row.id) {
178
-          this.tableDate[index].execution_state = 1
179
-          this.tableDate[index].execution_staff = row.execution_staff
180
-          this.tableDate[index].execution_time = row.execution_time
181
-          this.tableDate[index].checker = row.checker
150
+          this.tableDate[index].execution_state = 1;
151
+          this.tableDate[index].execution_staff = row.execution_staff;
152
+          this.tableDate[index].execution_time = row.execution_time;
153
+          this.tableDate[index].checker = row.checker;
182 154
           break;
183 155
         }
184 156
       }
185 157
     }
186 158
   }
187
-}
159
+};
188 160
 </script>
189 161
 
190 162
 <style rel="stylesheet/scss" lang="scss" scoped>