Bladeren bron

修改样式2

See999 5 jaren geleden
bovenliggende
commit
6f60b8f080

+ 19 - 120
src/pages/main/DetailsPage.vue Bestand weergeven

27
         <!-- <div class="time" style="width:1.49rem;">
27
         <!-- <div class="time" style="width:1.49rem;">
28
                   <span class="iconfont">2018-01-01&#xe74a;</span>
28
                   <span class="iconfont">2018-01-01&#xe74a;</span>
29
         </div>-->
29
         </div>-->
30
-<<<<<<< .mine
31
         <div class="print" style="float: right; visibility: hidden;">
30
         <div class="print" style="float: right; visibility: hidden;">
32
           <el-button size="mini" type="primary" @click="print" icon="el-icon-printer">打印</el-button>
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
         </div>
32
         </div>
58
       </div>
33
       </div>
59
       <div class="Tab">
34
       <div class="Tab">
74
             year-format="{value} "
49
             year-format="{value} "
75
             month-format="{value} "
50
             month-format="{value} "
76
             date-format="{value} ">
51
             date-format="{value} ">
77
-<<<<<<< .mine
78
     </mt-datetime-picker>-->
52
     </mt-datetime-picker>-->
79
   </div>
53
   </div>
80
-
81
-=======
82
-        </mt-datetime-picker> -->
83
-
84
-    </div>
85
->>>>>>> .theirs
86
 </template>
54
 </template>
87
 
55
 
88
 <script>
56
 <script>
89
-<<<<<<< .mine
90
 import SideBar from "@/pages/layout/SideBar";
57
 import SideBar from "@/pages/layout/SideBar";
91
 import TodayTab from "./today/TodayTab";
58
 import TodayTab from "./today/TodayTab";
92
 import DialysisTab from "./dialysis/DialysisTab";
59
 import DialysisTab from "./dialysis/DialysisTab";
97
 import { GetPatientInfoWithDiseases } from "@/api/patient";
64
 import { GetPatientInfoWithDiseases } from "@/api/patient";
98
 import { Toast } from "vant";
65
 import { Toast } from "vant";
99
 import CaseHistory from "./records/CaseHistory";
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
 export default {
68
 export default {
114
-  name: 'DetailsPage',
69
+  name: "DetailsPage",
115
   components: {
70
   components: {
116
     CaseHistory,
71
     CaseHistory,
117
     CheckTab,
72
     CheckTab,
121
     RecordsTab,
76
     RecordsTab,
122
     Popover
77
     Popover
123
   },
78
   },
124
-  data () {
79
+  data() {
125
     return {
80
     return {
126
       // pickerVisible: new Date(),
81
       // pickerVisible: new Date(),
127
       patient_id: 0,
82
       patient_id: 0,
128
-      patient_name: '',
83
+      patient_name: "",
129
       date: 0,
84
       date: 0,
130
       index: 2,
85
       index: 2,
131
-<<<<<<< .mine
132
       patient: null
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
   methods: {
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
     openPicker() {
105
     openPicker() {
157
       this.$refs.picker.open();
106
       this.$refs.picker.open();
158
     },
107
     },
162
         this.$router.push(
111
         this.$router.push(
163
           "/Print?xtdate=" + xtdate + "&xtno=" + this.patient.dialysis_no
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
     GetPatientInfoWithDiseases(id) {
116
     GetPatientInfoWithDiseases(id) {
180
       GetPatientInfoWithDiseases(id)
117
       GetPatientInfoWithDiseases(id)
190
           // on cancel
127
           // on cancel
191
           Toast.fail("网络异常");
128
           Toast.fail("网络异常");
192
           return false;
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
     jump: function(val) {
132
     jump: function(val) {
214
       this.index = 2;
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
 </script>
141
 </script>
243
 
142
 
244
 <style style="stylesheet/scss" lang="scss" scoped>
143
 <style style="stylesheet/scss" lang="scss" scoped>

+ 1 - 1
src/pages/main/DialysisArea.vue Bestand weergeven

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

+ 25 - 339
src/pages/main/PatientBox.vue Bestand weergeven

55
 </template>
55
 </template>
56
 
56
 
57
 <script>
57
 <script>
58
-<<<<<<< .mine
59
 import { parseTime } from "@/utils";
58
 import { parseTime } from "@/utils";
60
 import { jsGetAge } from "@/utils/tools";
59
 import { jsGetAge } from "@/utils/tools";
61
 import { setDialysisOrWaitSelectedConfig } from "@/utils/data_config";
60
 import { setDialysisOrWaitSelectedConfig } from "@/utils/data_config";
107
         return "gray";
106
         return "gray";
108
       } else if (state == 3) {
107
       } else if (state == 3) {
109
         return "red";
108
         return "red";
109
+      } else if (state == 5) {
110
+        return "green1";
111
+      } else if (state == 6) {
112
+        return "green2";
110
       } else {
113
       } else {
111
         return "blue";
114
         return "blue";
112
       }
115
       }
137
         return "已下机";
140
         return "已下机";
138
       } else if (state == 3) {
141
       } else if (state == 3) {
139
         return "监测中";
142
         return "监测中";
143
+      } else if (state == 5) {
144
+        return "待称重";
145
+      } else if (state == 6) {
146
+        return "待开处方";
140
       } else {
147
       } else {
141
         // return schedual.patient.gender == 1 ? "男" : "女"
148
         // return schedual.patient.gender == 1 ? "男" : "女"
142
         return "未上机";
149
         return "未上机";
143
       }
150
       }
144
     },
151
     },
145
     computeState: function(schedual) {
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
       if (schedual.prescription == null || schedual.prescription.creater == 0) {
160
       if (schedual.prescription == null || schedual.prescription.creater == 0) {
285
         // 未确认处方
161
         // 未确认处方
286
-        return 6
162
+        return 6;
287
       }
163
       }
288
 
164
 
289
       if (schedual.dialysis_order == null) {
165
       if (schedual.dialysis_order == null) {
290
         // 未上机
166
         // 未上机
291
-        return 4
167
+        return 4;
292
       } else if (schedual.dialysis_order.stage == 2) {
168
       } else if (schedual.dialysis_order.stage == 2) {
293
         // 已下机
169
         // 已下机
294
-        return 2
170
+        return 2;
295
       } else if (
171
       } else if (
296
         schedual.dialysis_order.stage == 1 &&
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
       } else {
178
       } else {
303
-        return 1
179
+        return 1;
304
       }
180
       }
305
     },
181
     },
306
->>>>>>> .theirs
307
 
182
 
308
-<<<<<<< .mine
309
     orderState: function(schedual) {
183
     orderState: function(schedual) {
310
       if (schedual.dialysis_order == null) {
184
       if (schedual.dialysis_order == null) {
311
         // 未上机
185
         // 未上机
354
       } else {
228
       } else {
355
         return schedual.patient.age;
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
       // var now = new Date();
232
       // var now = new Date();
410
       // var nowYear = parseTime(now, "{y}");
233
       // var nowYear = parseTime(now, "{y}");
411
       // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
234
       // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
430
       } else {
253
       } else {
431
         setDialysisOrWaitSelectedConfig(0);
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
       var patient_id = schedual.patient_id;
257
       var patient_id = schedual.patient_id;
462
       var date = schedual.schedule_date;
258
       var date = schedual.schedule_date;
463
       this.$router.push({
259
       this.$router.push({
466
           patient_id: patient_id,
262
           patient_id: patient_id,
467
           date: date,
263
           date: date,
468
           patient_name: schedual.patient.name
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
 </script>
270
 </script>
493
 
271
 
494
 <style style="stylesheet/scss" lang="scss" scoped>
272
 <style style="stylesheet/scss" lang="scss" scoped>
593
       .green {
371
       .green {
594
         background: #5bd18b;
372
         background: #5bd18b;
595
       }
373
       }
374
+      .green1 {
375
+        background: #e6a23c;
376
+      }
377
+      .green2 {
378
+        background: #7930c3;
379
+      }
596
       .gray {
380
       .gray {
597
         background: #a8b3ba;
381
         background: #a8b3ba;
598
       }
382
       }
618
   font-size: 0.8em;
402
   font-size: 0.8em;
619
   border-radius: 20px;
403
   border-radius: 20px;
620
   color: #fff;
404
   color: #fff;
621
-<<<<<<< .mine
622
   background: #f56c6c;
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
   position: absolute;
406
   position: absolute;
721
   top: -8px;
407
   top: -8px;
722
   left: 0.7rem;
408
   left: 0.7rem;

+ 6 - 18
src/pages/main/PrintIndex.vue Bestand weergeven

18
         <!--&lt;!&ndash;<el-button size="mini" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>&ndash;&gt;-->
18
         <!--&lt;!&ndash;<el-button size="mini" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>&ndash;&gt;-->
19
         <!--</div>-->
19
         <!--</div>-->
20
       </div>
20
       </div>
21
-<<<<<<< .mine
22
       <DialysisPrintOrderOne
21
       <DialysisPrintOrderOne
23
         style="margin-top:60px;"
22
         style="margin-top:60px;"
24
         v-bind:childResponse="childResponse"
23
         v-bind:childResponse="childResponse"
34
         v-bind:childResponse="childResponse"
33
         v-bind:childResponse="childResponse"
35
         v-if="org_template_info.template_id ==5"
34
         v-if="org_template_info.template_id ==5"
36
       ></DialysisPrintOrderFive>
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
       <!--<DialysisPrintOrderSix style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==6"></DialysisPrintOrderSix>-->
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
     </div>
42
     </div>
55
     <side-bar :active_index="0" v-if="isShow == true"></side-bar>
43
     <side-bar :active_index="0" v-if="isShow == true"></side-bar>
56
   </div>
44
   </div>
67
 import DialysisPrintOrderOne from "./template/DialysisPrintOrderOne";
55
 import DialysisPrintOrderOne from "./template/DialysisPrintOrderOne";
68
 import DialysisPrintOrderTwo from "./template/DialysisPrintOrderTwo";
56
 import DialysisPrintOrderTwo from "./template/DialysisPrintOrderTwo";
69
 import DialysisPrintOrderFive from "./template/DialysisPrintOrderFive";
57
 import DialysisPrintOrderFive from "./template/DialysisPrintOrderFive";
70
-import DialysisPrintOrderSix from './template/DialysisPrintOrderSix'
58
+import DialysisPrintOrderSix from "./template/DialysisPrintOrderSix";
71
 
59
 
72
 export default {
60
 export default {
73
   name: "PrintIndex",
61
   name: "PrintIndex",

+ 0 - 94
src/pages/main/RecordPage.vue Bestand weergeven

98
 </template>
98
 </template>
99
 
99
 
100
 <script>
100
 <script>
101
-<<<<<<< .mine
102
 import DialysisArea from "./DialysisArea";
101
 import DialysisArea from "./DialysisArea";
103
 import WaitingArea from "./WaitingArea";
102
 import WaitingArea from "./WaitingArea";
104
 import { Popover } from "vux";
103
 import { Popover } from "vux";
105
 import { getDialysisScheduals, getWaitingScheduals } from "@/api/dialysis";
104
 import { getDialysisScheduals, getWaitingScheduals } from "@/api/dialysis";
106
 import { parseTime } from "@/utils/index";
105
 import { parseTime } from "@/utils/index";
107
 import { getDialysisOrWaitSelectedConfig } from "@/utils/data_config";
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
 export default {
108
 export default {
119
   name: "RecordPage",
109
   name: "RecordPage",
120
   props: {
110
   props: {
121
     un_read_wait_num: {
111
     un_read_wait_num: {
122
       type: Number
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
     un_read_dialysis_num: {
114
     un_read_dialysis_num: {
133
       type: Number
115
       type: Number
134
     }
116
     }
151
     // Group,
133
     // Group,
152
     // Cell
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
   methods: {
137
   methods: {
181
     ClickTab: function(tabIndex) {
138
     ClickTab: function(tabIndex) {
182
       this.index = tabIndex;
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
     searchWithKeyword: function() {
141
     searchWithKeyword: function() {
211
       this.$refs.search_field.blur();
142
       this.$refs.search_field.blur();
212
       this.search_keyword = this.search_input;
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
     clearKeyword: function() {
145
     clearKeyword: function() {
221
       this.search_input = "";
146
       this.search_input = "";
222
       this.search_keyword = "";
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
   created() {
150
   created() {
232
     var index = getDialysisOrWaitSelectedConfig();
151
     var index = getDialysisOrWaitSelectedConfig();
234
     if (index != null) {
153
     if (index != null) {
235
       this.index = index;
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
 </script>
158
 </script>
253
 
159
 
254
 <style style="stylesheet/scss" lang="scss" scoped>
160
 <style style="stylesheet/scss" lang="scss" scoped>

+ 80 - 132
src/pages/main/dialog/LongDialog.vue Bestand weergeven

296
 </template>
296
 </template>
297
 
297
 
298
 <script>
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
 export default {
303
 export default {
304
-  name: 'LongDialog',
304
+  name: "LongDialog",
305
   components: {
305
   components: {
306
     LongDialogMenu
306
     LongDialogMenu
307
   },
307
   },
308
   methods: {
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
       createPatientDialysisSolution(
327
       createPatientDialysisSolution(
328
         this.patient.id,
328
         this.patient.id,
329
         this.dialysisSolution
329
         this.dialysisSolution
330
       ).then(response => {
330
       ).then(response => {
331
         if (response.data.state == 0) {
331
         if (response.data.state == 0) {
332
-          Toast.fail(response.data.msg)
332
+          Toast.fail(response.data.msg);
333
           // this.$toast({message: response.data.msg});
333
           // this.$toast({message: response.data.msg});
334
-          return false
334
+          return false;
335
         } else {
335
         } else {
336
-          Toast.success('创建成功')
336
+          Toast.success("创建成功");
337
           // this.$toast({message: "创建成功"});
337
           // this.$toast({message: "创建成功"});
338
-          this.$emit('longSolution')
338
+          this.$emit("longSolution");
339
           for (const key in response.data.data.solution) {
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
           // this.solution_prop = response.data.data.solution
342
           // this.solution_prop = response.data.data.solution
343
         }
343
         }
344
-      })
344
+      });
345
     }
345
     }
346
   },
346
   },
347
 
347
 
354
     },
354
     },
355
     machines_prop: {
355
     machines_prop: {
356
       type: Array,
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
     return {
363
     return {
364
-      doctor: '',
364
+      doctor: "",
365
       showObj: {
365
       showObj: {
366
         mode_show: {
366
         mode_show: {
367
           0: false,
367
           0: false,
384
 
384
 
385
       anticoagulant: {
385
       anticoagulant: {
386
         id: 0,
386
         id: 0,
387
-        name: '',
387
+        name: "",
388
         type: 1,
388
         type: 1,
389
         shouji: 1,
389
         shouji: 1,
390
         weichi: 1,
390
         weichi: 1,
391
         zongliang: 1,
391
         zongliang: 1,
392
         gaimingcheng: -1,
392
         gaimingcheng: -1,
393
         gaijiliang: -1,
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
       patient: {
400
       patient: {
401
         id: 0
401
         id: 0
402
       },
402
       },
403
       dialysisSolution: {
403
       dialysisSolution: {
404
         id: 0,
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
         displace_liqui: 0,
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
   watch: {
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
       if (isNaN(thismode) || thismode <= 0) {
441
       if (isNaN(thismode) || thismode <= 0) {
442
-        return false
442
+        return false;
443
       }
443
       }
444
       if (
444
       if (
445
-        typeof this.anticoagulantsConfit[thismode] === 'undefined' ||
445
+        typeof this.anticoagulantsConfit[thismode] === "undefined" ||
446
         this.anticoagulantsConfit[thismode] == null
446
         this.anticoagulantsConfit[thismode] == null
447
       ) {
447
       ) {
448
-        return false
448
+        return false;
449
       }
449
       }
450
-<<<<<<< .mine
451
       this.anticoagulant = this.anticoagulantsConfit[thismode];
450
       this.anticoagulant = this.anticoagulantsConfit[thismode];
452
       this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[
451
       this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[
453
         thismode
452
         thismode
454
       ].name;
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
     "dialysisSolution.hemodialysis_machine": function() {
455
     "dialysisSolution.hemodialysis_machine": function() {
464
       var machine = parseInt(this.dialysisSolution.hemodialysis_machine);
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
       if (isNaN(machine) || machine <= 0) {
457
       if (isNaN(machine) || machine <= 0) {
470
-        return
458
+        return;
471
       }
459
       }
472
       for (let index = 0; index < this.dialyserList.length; index++) {
460
       for (let index = 0; index < this.dialyserList.length; index++) {
473
         if (machine == this.dialyserList[index].id) {
461
         if (machine == this.dialyserList[index].id) {
474
-<<<<<<< .mine
475
           this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[
462
           this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[
476
             index
463
             index
477
           ].name;
464
           ].name;
478
           break;
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
     "dialysisSolution.perfusion_apparatus": function() {
469
     "dialysisSolution.perfusion_apparatus": function() {
490
       var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus);
470
       var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus);
491
       if (isNaN(apparatus) || apparatus <= 0) {
471
       if (isNaN(apparatus) || apparatus <= 0) {
492
         return false;
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
       for (let index = 0; index < this.perfusion_apparatus.length; index++) {
474
       for (let index = 0; index < this.perfusion_apparatus.length; index++) {
501
         if (apparatus == this.perfusion_apparatus[index].id) {
475
         if (apparatus == this.perfusion_apparatus[index].id) {
502
-<<<<<<< .mine
503
           this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[
476
           this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[
504
             index
477
             index
505
           ].name;
478
           ].name;
506
           break;
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
     "dialysisSolution.replacement_way": function() {
483
     "dialysisSolution.replacement_way": function() {
518
       var way = parseInt(this.dialysisSolution.replacement_way);
484
       var way = parseInt(this.dialysisSolution.replacement_way);
519
       if (isNaN(way) || way <= 0) {
485
       if (isNaN(way) || way <= 0) {
520
         return false;
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
       for (let index = 0; index < this.replacementWays.length; index++) {
488
       for (let index = 0; index < this.replacementWays.length; index++) {
529
         if (way == this.replacementWays[index].id) {
489
         if (way == this.replacementWays[index].id) {
530
-<<<<<<< .mine
531
           this.dialysisSolution.replacement_way_name = this.replacementWays[
490
           this.dialysisSolution.replacement_way_name = this.replacementWays[
532
             index
491
             index
533
           ].name;
492
           ].name;
534
           break;
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
   //   }
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
     for (var modeOne in this.modeOptions) {
521
     for (var modeOne in this.modeOptions) {
569
-      this.modeList.push(this.modeOptions[modeOne])
522
+      this.modeList.push(this.modeOptions[modeOne]);
570
     }
523
     }
571
     for (var one in this.anticoagulantsConfit) {
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
     // console.log("this.solution_prop",this.solution_prop);
530
     // console.log("this.solution_prop",this.solution_prop);
578
     if (this.solution_prop != null && this.solution_prop.id != "") {
531
     if (this.solution_prop != null && this.solution_prop.id != "") {
579
       for (const key in this.solution_prop) {
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
     this.dialyserList = this.machines_prop;
537
     this.dialyserList = this.machines_prop;
586
   }
538
   }
587
-=======
588
-    this.dialyserList = this.machines_prop
589
-  }
590
->>>>>>> .theirs
591
   // data() {
539
   // data() {
592
   //   return {
540
   //   return {
593
   //     show_two_menu: false
541
   //     show_two_menu: false
609
   //     this.show_two_menu = true;
557
   //     this.show_two_menu = true;
610
   //   }
558
   //   }
611
   // }
559
   // }
612
-}
560
+};
613
 </script>
561
 </script>
614
 
562
 
615
 <style style="stylesheet/scss" lang="scss" scoped>
563
 <style style="stylesheet/scss" lang="scss" scoped>

+ 15 - 103
src/pages/main/dialog/OrdersDialog.vue Bestand weergeven

21
           @click="modifyExecAdvice"
21
           @click="modifyExecAdvice"
22
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
22
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
23
         >修改执行医嘱</span>
23
         >修改执行医嘱</span>
24
-        <span v-if="template_id != 6"
24
+        <span
25
+          v-if="template_id != 6"
25
           @click="checkAdvice"
26
           @click="checkAdvice"
26
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || (this.$store.getters.user.user.user_type == 2 && !isPremission) }"
27
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || (this.$store.getters.user.user.user_type == 2 && !isPremission) }"
27
         >医嘱核对</span>
28
         >医嘱核对</span>
83
                 >
84
                 >
84
                   <div class="txt">
85
                   <div class="txt">
85
                     <span>{{advice.advice_name }}</span>
86
                     <span>{{advice.advice_name }}</span>
86
-<<<<<<< .mine
87
                     <span
87
                     <span
88
                       v-if="advice.advice_desc"
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
                     <span
90
                     <span
91
                       v-if="advice.prescribing_number"
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
                     <span
93
                     <span
94
-                      v-if="advice.single_dose"
94
+                      v-if="advice.single_dose && template_id != 6"
95
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
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
                     <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
97
                     <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
108
                     <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
98
                     <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
109
                     <span
99
                     <span
246
   data() {
236
   data() {
247
     return {
237
     return {
248
       isShowDialog: true,
238
       isShowDialog: true,
239
+      template_id: 0,
249
       isShowExce: true,
240
       isShowExce: true,
250
       isShowMofifyExce: false,
241
       isShowMofifyExce: false,
251
       title: "临时医嘱",
242
       title: "临时医嘱",
276
     };
267
     };
277
   },
268
   },
278
   created() {
269
   created() {
270
+    this.template_id = this.$store.getters.user.template_info.template_id;
279
     var date = this.$route.query && this.$route.query.date;
271
     var date = this.$route.query && this.$route.query.date;
280
     date *= 1000;
272
     date *= 1000;
281
     var newDate = new Date(date);
273
     var newDate = new Date(date);
282
 
274
 
283
-<<<<<<< .mine
284
     var y = newDate.getFullYear();
275
     var y = newDate.getFullYear();
285
     var m = newDate.getMonth() + 1;
276
     var m = newDate.getMonth() + 1;
286
     var d = newDate.getDate();
277
     var d = newDate.getDate();
293
     this.record_date =
284
     this.record_date =
294
       y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
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
     this.patient = this.patient_prop;
287
     this.patient = this.patient_prop;
353
     this.adviceList = this.advice_list_prop;
288
     this.adviceList = this.advice_list_prop;
354
     this.admin_users = this.admin_users_prop;
289
     this.admin_users = this.admin_users_prop;
355
     this.doctor = this.$store.getters.user.user.user_name;
290
     this.doctor = this.$store.getters.user.user.user_name;
356
     this.getAdviceConfig();
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
     this.unitsOption = getDataConfig("hemodialysis", "units");
293
     this.unitsOption = getDataConfig("hemodialysis", "units");
370
     for (var index in this.unitsOption) {
294
     for (var index in this.unitsOption) {
371
       this.unitsObj[this.unitsOption[index].id] = this.unitsOption[index];
295
       this.unitsObj[this.unitsOption[index].id] = this.unitsOption[index];
407
 
331
 
408
   methods: {
332
   methods: {
409
     modifyExecAdvice: function() {
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
     didCreateAdvices: function(advices) {
342
     didCreateAdvices: function(advices) {
418
       if (advices.length == 0) {
343
       if (advices.length == 0) {
422
         advices[i]["is_selected"] = 0;
347
         advices[i]["is_selected"] = 0;
423
       }
348
       }
424
 
349
 
425
-<<<<<<< .mine
426
       var new_group = Object.assign(
350
       var new_group = Object.assign(
427
         {},
351
         {},
428
         {
352
         {
429
           group_no: 0,
353
           group_no: 0,
430
           start_time: 0,
354
           start_time: 0,
431
           advices: []
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
       new_group.group_no = advices[0].groupno;
358
       new_group.group_no = advices[0].groupno;
447
       new_group.start_time = advices[0].start_time;
359
       new_group.start_time = advices[0].start_time;

+ 80 - 270
src/pages/main/index.vue Bestand weergeven

10
 </template>
10
 </template>
11
 
11
 
12
 
12
 
13
+
14
+
13
 <script>
15
 <script>
14
 import RecordPage from "./RecordPage";
16
 import RecordPage from "./RecordPage";
15
 import SideBar from "@/pages/layout/SideBar";
17
 import SideBar from "@/pages/layout/SideBar";
37
   },
39
   },
38
   methods: {
40
   methods: {
39
     requestScheduals() {
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
               if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
51
               if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
52
                 doctorAdvice.push(this.scheduals[i].doctor_advice[y]);
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
           var resp = rs.data;
65
           var resp = rs.data;
66
+          this.$store.dispatch("SetRequestScheduals", { resp });
67
+          // console.log(resp);
76
           if (resp.state == 1) {
68
           if (resp.state == 1) {
77
             var scheduals = resp.data.scheduals;
69
             var scheduals = resp.data.scheduals;
70
+            this.scheduals = scheduals;
71
+            console.log(this.scheduals);
78
             let doctorAdvice = [];
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
             const sorted = this.groupBy(doctorAdvice, function(item) {
83
             const sorted = this.groupBy(doctorAdvice, function(item) {
111
               return [item.groupno];
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
           } else {
88
           } else {
124
             this.$toast({
89
             this.$toast({
125
               message: resp.msg
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
             if (resp.state == 1) {
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
             } else {
148
             } else {
263
               this.$toast({
149
               this.$toast({
264
                 message: resp.msg
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
     groupBy(array, f) {
157
     groupBy(array, f) {
348
       const groups = {};
158
       const groups = {};

Diff onderdrukt omdat het te groot bestand
+ 176 - 2119
src/pages/main/today/TodayTab.vue


+ 8 - 248
src/pages/main/today/acceptsAssessment.vue Bestand weergeven

59
           <span class="content">{{this.record.sick_condition_other}}</span>
59
           <span class="content">{{this.record.sick_condition_other}}</span>
60
         </li>
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
           <label>摄入量:</label>
63
           <label>摄入量:</label>
68
           <span class="content">{{intakes}}</span>
64
           <span class="content">{{intakes}}</span>
69
         </li>
65
         </li>
88
           <span class="content">{{this.record.psychological_other}}</span>
84
           <span class="content">{{this.record.psychological_other}}</span>
89
         </li>
85
         </li>
90
       </ul>
86
       </ul>
91
-<<<<<<< .mine
92
-
93
-=======
94
-
95
->>>>>>> .theirs
96
     </div>
87
     </div>
97
   </div>
88
   </div>
98
 </template>
89
 </template>
99
 
90
 
100
 <script>
91
 <script>
101
 export default {
92
 export default {
102
-  name: 'AcceptsAssessment',
103
-  data () {
93
+  name: "AcceptsAssessment",
94
+  data() {
104
     return {
95
     return {
105
-      title: '接诊评估 ',
96
+      title: "接诊评估 ",
106
 
97
 
107
       ways: {
98
       ways: {
108
-<<<<<<< .mine
109
         "1": "步行",
99
         "1": "步行",
110
         "2": "扶行",
100
         "2": "扶行",
111
         "3": "轮椅",
101
         "3": "轮椅",
112
         "4": "平车"
102
         "4": "平车"
113
-=======
114
-        '1': '步行',
115
-        '2': '扶行',
116
-        '3': '轮椅',
117
-        '4': '平车'
118
->>>>>>> .theirs
119
       },
103
       },
120
       conditions: {
104
       conditions: {
121
-<<<<<<< .mine
122
         "1": "住院",
105
         "1": "住院",
123
         "2": "门诊",
106
         "2": "门诊",
124
         "3": "手术期"
107
         "3": "手术期"
125
-=======
126
-        '1': '住院',
127
-        '2': '门诊',
128
-        '3': '手术期'
129
->>>>>>> .theirs
130
       },
108
       },
131
       consciousnesses: {
109
       consciousnesses: {
132
-<<<<<<< .mine
133
         "1": "清醒",
110
         "1": "清醒",
134
         "2": "嗜睡",
111
         "2": "嗜睡",
135
-        "3": "昏迷"
136
-
137
-=======
138
-        '1': '清醒',
139
-        '2': '嗜睡',
140
-        '3': '昏迷',
141
-        '4': '模糊'
142
->>>>>>> .theirs
112
+        "3": "昏迷",
113
+        "4": "模糊"
143
       },
114
       },
144
       appetites: {
115
       appetites: {
145
-<<<<<<< .mine
146
         "1": "正常",
116
         "1": "正常",
147
         "2": "减退",
117
         "2": "减退",
148
         "3": "恶心",
118
         "3": "恶心",
149
         "4": "呕吐",
119
         "4": "呕吐",
150
         "5": "腹泻"
120
         "5": "腹泻"
151
-=======
152
-        '1': '正常',
153
-        '2': '减退',
154
-        '3': '恶心',
155
-        '4': '呕吐',
156
-        '5': '腹泻'
157
->>>>>>> .theirs
158
       },
121
       },
159
       postures: {
122
       postures: {
160
-<<<<<<< .mine
161
         "1": "自动体位",
123
         "1": "自动体位",
162
         "2": "平卧位",
124
         "2": "平卧位",
163
         "3": "半卧位",
125
         "3": "半卧位",
192
         "2": "约束带",
154
         "2": "约束带",
193
         "3": "床栏",
155
         "3": "床栏",
194
         "4": "加强宣教"
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
   props: {
160
   props: {
237
     record: {
161
     record: {
239
     }
163
     }
240
   },
164
   },
241
   computed: {
165
   computed: {
242
-<<<<<<< .mine
243
     way: function() {
166
     way: function() {
244
       if (this.record == null || this.record.id == "") {
167
       if (this.record == null || this.record.id == "") {
245
         return "";
168
         return "";
246
-=======
247
-    way: function () {
248
-      if (this.record == null || this.record.id == '') {
249
-        return ''
250
->>>>>>> .theirs
251
       } else {
169
       } else {
252
-<<<<<<< .mine
253
         return this.ways[this.record.way] == undefined
170
         return this.ways[this.record.way] == undefined
254
           ? ""
171
           ? ""
255
           : this.ways[this.record.way] + "";
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
     condition: function() {
175
     condition: function() {
265
       if (this.record == null || this.record.id == "") {
176
       if (this.record == null || this.record.id == "") {
266
         return "";
177
         return "";
267
-=======
268
-    condition: function () {
269
-      if (this.record == null || this.record.id == '') {
270
-        return ''
271
->>>>>>> .theirs
272
       } else {
178
       } else {
273
-<<<<<<< .mine
274
         return this.conditions[this.record.condition] == undefined
179
         return this.conditions[this.record.condition] == undefined
275
           ? ""
180
           ? ""
276
           : this.conditions[this.record.condition] + "";
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
     consciousness: function() {
184
     consciousness: function() {
286
       if (this.record == null || this.record.id == "") {
185
       if (this.record == null || this.record.id == "") {
287
         return "";
186
         return "";
288
-=======
289
-    consciousness: function () {
290
-      if (this.record == null || this.record.id == '') {
291
-        return ''
292
->>>>>>> .theirs
293
       } else {
187
       } else {
294
-<<<<<<< .mine
295
         return this.consciousnesses[this.record.consciousness] == undefined
188
         return this.consciousnesses[this.record.consciousness] == undefined
296
           ? ""
189
           ? ""
297
           : this.consciousnesses[this.record.consciousness] + "";
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
     appetite: function() {
193
     appetite: function() {
307
       if (this.record == null || this.record.id == "") {
194
       if (this.record == null || this.record.id == "") {
308
         return "";
195
         return "";
309
-=======
310
-    appetite: function () {
311
-      if (this.record == null || this.record.id == '') {
312
-        return ''
313
->>>>>>> .theirs
314
       } else {
196
       } else {
315
-<<<<<<< .mine
316
         return this.appetites[this.record.appetite] == undefined
197
         return this.appetites[this.record.appetite] == undefined
317
           ? ""
198
           ? ""
318
           : this.appetites[this.record.appetite] + "";
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
     posture: function() {
202
     posture: function() {
328
       if (this.record == null || this.record.id == "") {
203
       if (this.record == null || this.record.id == "") {
329
         return "";
204
         return "";
330
-=======
331
-    posture: function () {
332
-      if (this.record == null || this.record.id == '') {
333
-        return ''
334
->>>>>>> .theirs
335
       } else {
205
       } else {
336
-<<<<<<< .mine
337
         return this.postures[this.record.posture] == undefined
206
         return this.postures[this.record.posture] == undefined
338
           ? ""
207
           ? ""
339
           : this.postures[this.record.posture] + "";
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
     sickCondition: function() {
211
     sickCondition: function() {
349
       if (this.record == null || this.record.id == "") {
212
       if (this.record == null || this.record.id == "") {
350
         return "";
213
         return "";
351
-=======
352
-    }, 
353
-sickCondition: function () {
354
-      if (this.record == null || this.record.id == '') {
355
-        return ''
356
->>>>>>> .theirs
357
       } else {
214
       } else {
358
-<<<<<<< .mine
359
         return this.sick_condition[this.record.sick_condition] == undefined
215
         return this.sick_condition[this.record.sick_condition] == undefined
360
           ? ""
216
           ? ""
361
           : this.sick_condition[this.record.sick_condition] + "";
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
     dangerLevel: function() {
220
     dangerLevel: function() {
371
       if (this.record == null || this.record.id == "") {
221
       if (this.record == null || this.record.id == "") {
372
         return "";
222
         return "";
373
-=======
374
-    }, 
375
-dangerLevel: function () {
376
-      if (this.record == null || this.record.id == '') {
377
-        return ''
378
->>>>>>> .theirs
379
       } else {
223
       } else {
380
-<<<<<<< .mine
381
         return this.danger_level[this.record.danger_level] == undefined
224
         return this.danger_level[this.record.danger_level] == undefined
382
           ? ""
225
           ? ""
383
           : this.danger_level[this.record.danger_level] + "";
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
     precautions: function() {
229
     precautions: function() {
393
       if (this.record == null || this.record.id == "") {
230
       if (this.record == null || this.record.id == "") {
394
         return "";
231
         return "";
395
-=======
396
-    }, 
397
-precautions: function () {
398
-      if (this.record == null || this.record.id == '') {
399
-        return ''
400
->>>>>>> .theirs
401
       } else {
232
       } else {
402
-<<<<<<< .mine
403
         return this.precautionss[this.record.precaution] == undefined
233
         return this.precautionss[this.record.precaution] == undefined
404
           ? ""
234
           ? ""
405
           : this.precautionss[this.record.precaution] + "";
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
     intakes: function() {
238
     intakes: function() {
415
       if (this.record == null || this.record.id == "") {
239
       if (this.record == null || this.record.id == "") {
416
         return "";
240
         return "";
417
-=======
418
-    }, 
419
-intakes: function () {
420
-      if (this.record == null || this.record.id == '') {
421
-        return ''
422
->>>>>>> .theirs
423
       } else {
241
       } else {
424
-<<<<<<< .mine
425
         return this.intake[this.record.intake] == undefined
242
         return this.intake[this.record.intake] == undefined
426
           ? ""
243
           ? ""
427
           : this.intake[this.record.intake] + "";
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
     nutritions: function() {
247
     nutritions: function() {
437
       if (this.record == null || this.record.id == "") {
248
       if (this.record == null || this.record.id == "") {
438
         return "";
249
         return "";
439
-=======
440
-    }, 
441
-nutritions: function () {
442
-      if (this.record == null || this.record.id == '') {
443
-        return ''
444
->>>>>>> .theirs
445
       } else {
250
       } else {
446
-<<<<<<< .mine
447
         return this.nutrition[this.record.nutrition] == undefined
251
         return this.nutrition[this.record.nutrition] == undefined
448
           ? ""
252
           ? ""
449
           : this.nutrition[this.record.nutrition] + "";
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
     psychologicalAssessment: function() {
256
     psychologicalAssessment: function() {
459
       if (this.record == null || this.record.id == "") {
257
       if (this.record == null || this.record.id == "") {
460
         return "";
258
         return "";
461
-=======
462
-    }, 
463
-psychologicalAssessment: function () {
464
-      if (this.record == null || this.record.id == '') {
465
-        return ''
466
->>>>>>> .theirs
467
       } else {
259
       } else {
468
-<<<<<<< .mine
469
         return this.psychological_assessment[
260
         return this.psychological_assessment[
470
           this.record.psychological_assessment
261
           this.record.psychological_assessment
471
         ] == undefined
262
         ] == undefined
473
           : this.psychological_assessment[
264
           : this.psychological_assessment[
474
               this.record.psychological_assessment
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
   methods: {
270
   methods: {
489
-<<<<<<< .mine
490
     isShow(name) {
271
     isShow(name) {
491
       var filedList = this.$store.getters.user.fileds;
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
       for (let i = 0; i < filedList.length; i++) {
274
       for (let i = 0; i < filedList.length; i++) {
499
         if (
275
         if (
500
           filedList[i].module == 2 &&
276
           filedList[i].module == 2 &&
502
           filedList[i].is_show == 1
278
           filedList[i].is_show == 1
503
         ) {
279
         ) {
504
           return true;
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
       return false;
283
       return false;
518
     }
284
     }
519
-
520
-=======
521
-      return false
522
-    }
523
-
524
->>>>>>> .theirs
525
   }
285
   }
526
-}
286
+};
527
 </script>
287
 </script>
528
 
288
 
529
 <style rel="stylesheet/scss" lang="scss" scoped>
289
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 25 - 38
src/pages/main/today/detailsInfo.vue Bestand weergeven

58
 </template>
58
 </template>
59
 
59
 
60
 <script>
60
 <script>
61
-import { parseTime } from '@/utils'
61
+import { parseTime } from "@/utils";
62
 import { jsGetAge } from "@/utils/tools";
62
 import { jsGetAge } from "@/utils/tools";
63
 
63
 
64
 export default {
64
 export default {
65
-  name: 'DetailsInfo',
66
-  data () {
65
+  name: "DetailsInfo",
66
+  data() {
67
     return {
67
     return {
68
       // patient: {
68
       // patient: {
69
       //   name: "",
69
       //   name: "",
78
       //   number: "",
78
       //   number: "",
79
       // },
79
       // },
80
       steps: [
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
   props: {
94
   props: {
95
     step_data: {
95
     step_data: {
97
     },
97
     },
98
     patient: {
98
     patient: {
99
       type: Object,
99
       type: Object,
100
-      default: function () {
100
+      default: function() {
101
         return {
101
         return {
102
-          name: '',
102
+          name: "",
103
           gender: 1,
103
           gender: 1,
104
-          birthday: '',
105
-          dialysis_no: '',
104
+          birthday: "",
105
+          dialysis_no: "",
106
           // device_number: "",
106
           // device_number: "",
107
-          source: '',
108
-          admission_number: ''
109
-        }
107
+          source: "",
108
+          admission_number: ""
109
+        };
110
       }
110
       }
111
     },
111
     },
112
     device_number: {
112
     device_number: {
114
     }
114
     }
115
   },
115
   },
116
   computed: {
116
   computed: {
117
-<<<<<<< .mine
118
     dialysis_date: function() {
117
     dialysis_date: function() {
119
       return parseTime(this.$route.query.date, "{y}/{m}/{d}");
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
     age: function() {
120
     age: function() {
127
       if (this.patient.age == 0) {
121
       if (this.patient.age == 0) {
128
         return jsGetAge(parseTime(this.patient.birthday, "{y}-{m}-{d}"), "-");
122
         return jsGetAge(parseTime(this.patient.birthday, "{y}-{m}-{d}"), "-");
129
       } else {
123
       } else {
130
         return this.patient.age;
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
   methods: {
131
   methods: {
162
     //   }
149
     //   }
163
     // }
150
     // }
164
   },
151
   },
165
-  created () {}
166
-}
152
+  created() {}
153
+};
167
 </script>
154
 </script>
168
 
155
 
169
 <style rel="stylesheet/scss" lang="scss" scoped>
156
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 0 - 82
src/pages/main/today/dialysisComputer.vue Bestand weergeven

31
           <span class="content">{{stage}}</span>
31
           <span class="content">{{stage}}</span>
32
         </li>
32
         </li>
33
       </ul>
33
       </ul>
34
-<<<<<<< .mine
35
-
36
-=======
37
-
38
->>>>>>> .theirs
39
     </div>
34
     </div>
40
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
35
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
41
   </div>
36
   </div>
42
 </template>
37
 </template>
43
 
38
 
44
 <script>
39
 <script>
45
-<<<<<<< .mine
46
 import { parseTime } from "@/utils";
40
 import { parseTime } from "@/utils";
47
-=======
48
-import {parseTime} from '@/utils'
49
->>>>>>> .theirs
50
 
41
 
51
-<<<<<<< .mine
52
 export default {
42
 export default {
53
   name: "DialysisComputer",
43
   name: "DialysisComputer",
54
   data() {
44
   data() {
71
     device_number: function() {
61
     device_number: function() {
72
       if (this.record == null || this.record.id == "") {
62
       if (this.record == null || this.record.id == "") {
73
         return "-";
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
       return this.device_number_map[this.record.bed_id] == null
65
       return this.device_number_map[this.record.bed_id] == null
101
         ? ""
66
         ? ""
102
         : this.device_number_map[this.record.bed_id].number;
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
     nurse: function() {
69
     nurse: function() {
111
       if (this.record == null || this.record.id == "") {
70
       if (this.record == null || this.record.id == "") {
112
         return "-";
71
         return "-";
113
-=======
114
-    nurse: function () {
115
-      if (this.record == null || this.record.id == '') {
116
-        return '-'
117
->>>>>>> .theirs
118
       }
72
       }
119
-<<<<<<< .mine
120
       return this.admin_map[this.record.start_nurse] == null
73
       return this.admin_map[this.record.start_nurse] == null
121
         ? ""
74
         ? ""
122
         : this.admin_map[this.record.start_nurse].name;
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
     stage: function() {
77
     stage: function() {
131
       if (this.record == null || this.record.id == "") {
78
       if (this.record == null || this.record.id == "") {
132
         return "未上机";
79
         return "未上机";
133
-=======
134
-    stage: function () {
135
-      if (this.record == null || this.record.id == '') {
136
-        return '未上机'
137
->>>>>>> .theirs
138
       }
80
       }
139
-<<<<<<< .mine
140
       return this.record.stage == 1 ? "已上机" : "已下机";
81
       return this.record.stage == 1 ? "已上机" : "已下机";
141
-=======
142
-      return this.record.stage == 1 ? '已上机' : '已下机'
143
->>>>>>> .theirs
144
     },
82
     },
145
-<<<<<<< .mine
146
     start_time: function() {
83
     start_time: function() {
147
       if (this.record == null || this.record.id == "") {
84
       if (this.record == null || this.record.id == "") {
148
         return "-";
85
         return "-";
160
   },
97
   },
161
   methods: {}
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
 </script>
100
 </script>
183
 
101
 
184
 <style rel="stylesheet/scss" lang="scss" scoped>
102
 <style rel="stylesheet/scss" lang="scss" scoped>

+ 3 - 54
src/pages/main/today/dialysisOff.vue Bestand weergeven

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

+ 66 - 94
src/pages/main/today/statOrder.vue Bestand weergeven

5
       <p>{{title}}</p>
5
       <p>{{title}}</p>
6
       <span class="line"></span>
6
       <span class="line"></span>
7
     </h2>
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
     <table class="table">
8
     <table class="table">
27
       <tr>
9
       <tr>
28
         <th width="12%">开嘱医生</th>
10
         <th width="12%">开嘱医生</th>
34
       </tr>
16
       </tr>
35
       <template v-for="(group) in advice_groups">
17
       <template v-for="(group) in advice_groups">
36
         <tr v-for="(advice, i) in group.advices" :key="advice.id">
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
     </div>
52
     </div>
74
   </div>
53
   </div>
75
 </template>
54
 </template>
76
 
55
 
77
 <script>
56
 <script>
78
-import { parseTime } from '@/utils';
57
+import { parseTime } from "@/utils";
79
 
58
 
80
 export default {
59
 export default {
81
-  name: 'statOrder',
82
-  data () {
60
+  name: "statOrder",
61
+  data() {
83
     return {
62
     return {
84
-<<<<<<< .mine
85
       title: "临时医嘱 ",
63
       title: "临时医嘱 ",
86
-      tableDate: []
87
-    };
88
-
89
-=======
90
-      title: '临时医嘱 ',
91
       template_id: 0,
64
       template_id: 0,
92
       tableDate: []
65
       tableDate: []
93
-    }
94
->>>>>>> .theirs
66
+    };
95
   },
67
   },
96
   props: {
68
   props: {
97
     doctor_map: {
69
     doctor_map: {
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
   methods: {
82
   methods: {
111
-    setAdvices (advices) {
83
+    setAdvices(advices) {
112
       if (advices == null) {
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
       if (time == 0) {
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
       if (row.parent_id > 0) {
97
       if (row.parent_id > 0) {
126
-        var spliceIndex = -1
98
+        var spliceIndex = -1;
127
         for (let index = this.tableDate.length - 1; ; index--) {
99
         for (let index = this.tableDate.length - 1; ; index--) {
128
           if (this.tableDate[index].parent_id === row.parent_id) {
100
           if (this.tableDate[index].parent_id === row.parent_id) {
129
-            spliceIndex = index
101
+            spliceIndex = index;
130
             break;
102
             break;
131
           } else if (this.tableDate[index].id === row.parent_id) {
103
           } else if (this.tableDate[index].id === row.parent_id) {
132
-            spliceIndex = index
104
+            spliceIndex = index;
133
             break;
105
             break;
134
           }
106
           }
135
         }
107
         }
136
         if (spliceIndex > -1) {
108
         if (spliceIndex > -1) {
137
-          spliceIndex += 1
109
+          spliceIndex += 1;
138
           if (spliceIndex === this.tableDate.length) {
110
           if (spliceIndex === this.tableDate.length) {
139
-            this.tableDate.push(row)
111
+            this.tableDate.push(row);
140
           } else {
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
       } else {
118
       } else {
147
-        this.tableDate.unshift(row)
119
+        this.tableDate.unshift(row);
148
       }
120
       }
149
     },
121
     },
150
-    delMedicalOrder (row) {
122
+    delMedicalOrder(row) {
151
       if (row.parent_id > 0) {
123
       if (row.parent_id > 0) {
152
-        var rslen = this.tableDate.length
124
+        var rslen = this.tableDate.length;
153
         for (let i = 0; i < rslen; i++) {
125
         for (let i = 0; i < rslen; i++) {
154
           if (this.tableDate[i].id == row.id) {
126
           if (this.tableDate[i].id == row.id) {
155
-            this.tableDate.splice(i, 1)
127
+            this.tableDate.splice(i, 1);
156
             break;
128
             break;
157
           }
129
           }
158
         }
130
         }
159
       } else {
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
         for (let i = 0; i < rslen; i++) {
136
         for (let i = 0; i < rslen; i++) {
165
           if (
137
           if (
166
             resetTableData[i].id != row.id &&
138
             resetTableData[i].id != row.id &&
167
             resetTableData[i].parent_id != row.id
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
       for (let index = 0; index < alen; index++) {
148
       for (let index = 0; index < alen; index++) {
177
         if (this.tableDate[index].id == row.id) {
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
           break;
154
           break;
183
         }
155
         }
184
       }
156
       }
185
     }
157
     }
186
   }
158
   }
187
-}
159
+};
188
 </script>
160
 </script>
189
 
161
 
190
 <style rel="stylesheet/scss" lang="scss" scoped>
162
 <style rel="stylesheet/scss" lang="scss" scoped>