Bladeren bron

修改医嘱相关

csx 5 jaren geleden
bovenliggende
commit
5d6796bfb6

+ 8 - 0
src/api/advice.js Bestand weergeven

103
     params:params,
103
     params:params,
104
   })
104
   })
105
 }
105
 }
106
+
107
+export function DeleteSubDoctorAdvice(params){
108
+  return request({
109
+    url:'/m/api/delete/subadvice?advice_id='+params,
110
+    method:'Delete',
111
+  })
112
+}
113
+

+ 21 - 13
src/pages/advice/DialysisAdviceTable.vue Bestand weergeven

81
           <td></td>
81
           <td></td>
82
         </tr>
82
         </tr>
83
         <template v-for="(schedule) in schedules">
83
         <template v-for="(schedule) in schedules">
84
-          <tr v-for="(advice, advice_index) in schedule.doctor_advice" :key="advice.id + '_' + advice_index + '_' + index"  @click="clickfunction(schedule)">
85
-            <td>{{ advice.parent_id == 0 ? schedule.device_number.number : "" }}</td>
86
-            <td style="color:#409eff;">{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
87
-            <td>{{ advice.parent_id == 0 ? schedule.patient.dialysis_no : "" }}</td>
88
-            <td>{{ getAdaviceType(advice.advice_type,advice.parent_id)}}</td>
89
-            <td>{{ advice.parent_id == 0 ? parseTime(advice.start_time, "{m}-{d} {h}:{i}") : "" }}</td>
84
+          <template v-for="(group, group_index) in schedule.new_advice">
85
+          <tr v-for="(advice, advice_index) in group.advices"  @click="clickfunction(schedule)">
86
+            <td  v-if="advice_index == 0"
87
+                 :rowspan="group.advices.length">{{ advice.parent_id == 0 ? schedule.device_number.number : "" }}</td>
88
+            <td  v-if="advice_index == 0"
89
+                 :rowspan="group.advices.length" style="color:#409eff;">{{ advice.parent_id == 0 ? schedule.patient.name : "" }}</td>
90
+            <td  v-if="advice_index == 0"
91
+                 :rowspan="group.advices.length">{{ advice.parent_id == 0 ? schedule.patient.dialysis_no : "" }}</td>
92
+            <td  v-if="advice_index == 0"
93
+                 :rowspan="group.advices.length">{{ getAdaviceType(advice.advice_type,advice.parent_id)}}</td>
94
+            <td  v-if="advice_index == 0"
95
+                 :rowspan="group.advices.length">{{ advice.parent_id == 0 ? parseTime(advice.start_time, "{m}-{d} {h}:{i}") : "" }}</td>
90
             <td>
96
             <td>
91
               <span >{{advice.advice_name }}</span>
97
               <span >{{advice.advice_name }}</span>
92
               <span >{{advice.advice_desc}}</span>
98
               <span >{{advice.advice_desc}}</span>
97
               <span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{advice.remark}})</span>
103
               <span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{advice.remark}})</span>
98
 
104
 
99
             </td>
105
             </td>
100
-            <td>{{ advice.parent_id == 0 ? parseTime(advice.execution_time, "{m}-{d} {h}:{i}") : "" }}</td>
101
-            <td>{{ advice.parent_id == 0 ? getName(advice.execution_staff) : "" }}</td>
102
-            <td>{{ advice.parent_id == 0 ? getName(advice.checker) : "" }}</td>
103
-            <td>{{ advice.parent_id == 0 ? parseTime(advice.check_time, "{m}-{d} {h}:{i}") : "" }}</td>
104
-            <td>{{ advice.parent_id == 0 ? getName(advice.advice_doctor) : "" }}</td>
105
-            <td>{{ advice.parent_id == 0 ? parseTime(advice.created_time, "{m}-{d} {h}:{i}") : "" }}</td>
106
+            <td>{{  parseTime(advice.execution_time, "{m}-{d} {h}:{i}") }}</td>
107
+            <td>{{ getName(advice.execution_staff) }}</td>
108
+            <td>{{  getName(advice.checker)  }}</td>
109
+            <td>{{  parseTime(advice.check_time, "{m}-{d} {h}:{i}") }}</td>
110
+            <td>{{  getName(advice.advice_doctor) }}</td>
111
+            <td>{{ parseTime(advice.created_time, "{m}-{d} {h}:{i}")}}</td>
106
 
112
 
107
 
113
 
108
           </tr>
114
           </tr>
115
+          </template>
116
+
109
         </template>
117
         </template>
110
       </template>
118
       </template>
111
      </table>
119
      </table>
277
           } else {
285
           } else {
278
             advice_groups = []
286
             advice_groups = []
279
           }
287
           }
280
-          maps.new_advice.push(advice_groups)
288
+          maps.new_advice = advice_groups
281
         }
289
         }
282
       }
290
       }
283
 
291
 

+ 11 - 1
src/pages/main/dialog/AssessmentDialog.vue Bestand weergeven

141
 
141
 
142
         <div class="line"></div>
142
         <div class="line"></div>
143
 
143
 
144
+        <div class="item" ref="symptom_before_dialysis" v-if="this.$store.getters.user.template_info.template_id == 2">
145
+          <h2 class="name">透析机型号</h2>
146
+          <div class="content">
147
+            <input type="tel" @focus="inputFocus" v-model="formValue.machine_type"/>
148
+          </div>
149
+        </div>
150
+
144
         <div class="item" ref="symptom_before_dialysis" v-if="this.$store.getters.user.template_info.template_id == 2">
151
         <div class="item" ref="symptom_before_dialysis" v-if="this.$store.getters.user.template_info.template_id == 2">
145
           <h2 class="name">透析频次(次/周)</h2>
152
           <h2 class="name">透析频次(次/周)</h2>
146
           <div class="content">
153
           <div class="content">
319
           blood_access_noise: '',
326
           blood_access_noise: '',
320
           internal_fistula_other: '',
327
           internal_fistula_other: '',
321
           blood_access_internal_fistula: '',
328
           blood_access_internal_fistula: '',
329
+          machine_type:'',
322
         },
330
         },
323
 
331
 
324
         record_date: ''
332
         record_date: ''
582
 
590
 
583
             this.propForm.type = 8
591
             this.propForm.type = 8
584
             this.isShowDialog = false
592
             this.isShowDialog = false
585
-            this.propForm.title = '内'
593
+            this.propForm.title = '内'
586
             this.visibility = true
594
             this.visibility = true
595
+            this.propForm.list = []
587
             this.propForm.list = getDataConfig('hemodialysis', 'internal_fistula')
596
             this.propForm.list = getDataConfig('hemodialysis', 'internal_fistula')
588
             this.propForm.optionList = []
597
             this.propForm.optionList = []
589
             this.propForm.isMultiple = 2
598
             this.propForm.isMultiple = 2
608
             this.isShowDialog = false
617
             this.isShowDialog = false
609
             this.propForm.title = '出血'
618
             this.propForm.title = '出血'
610
             this.visibility = true
619
             this.visibility = true
620
+            this.propForm.list = []
611
             this.propForm.list = getDataConfig('hemodialysis', 'hemorrhage')
621
             this.propForm.list = getDataConfig('hemodialysis', 'hemorrhage')
612
             this.propForm.optionList = []
622
             this.propForm.optionList = []
613
             this.propForm.isMultiple = 2
623
             this.propForm.isMultiple = 2

+ 48 - 9
src/pages/main/dialog/DoubleDialog.vue Bestand weergeven

50
             <el-input v-model="doubleReview.pipeline_connection_desc"></el-input>
50
             <el-input v-model="doubleReview.pipeline_connection_desc"></el-input>
51
           </el-form-item>
51
           </el-form-item>
52
 
52
 
53
-
54
         </el-form>
53
         </el-form>
55
 
54
 
55
+        <div class="item"  v-if="this.$store.getters.user.template_info.template_id == 2">
56
+          <h2 class="name">核对时间</h2>
57
+          <div class="content">
58
+            <span class="text" style="width: 100px"  @click="selectCheckTimeAction">{{ check_time_str }}</span>
59
+            <span class="iconfont">&#xe6f9;</span>
60
+          </div>
61
+        </div>
62
+
56
         <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="130px">
63
         <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="130px">
57
 
64
 
58
           <p style="margin: 10px 0 10px 13px;" v-if="doubleReview.creater != 0">{{getFirstCheckDesc()}} </p>
65
           <p style="margin: 10px 0 10px 13px;" v-if="doubleReview.creater != 0">{{getFirstCheckDesc()}} </p>
72
           处方医生:黄梦燕  护士
79
           处方医生:黄梦燕  护士
73
       </div> -->
80
       </div> -->
74
     </div>
81
     </div>
82
+    <mt-datetime-picker
83
+      ref="start_time_picker"
84
+      type="datetime"
85
+      @confirm="didSelectCheckTime"
86
+      v-model="check_time"
87
+    ></mt-datetime-picker>
75
   </div>
88
   </div>
89
+
76
 </template>
90
 </template>
77
 
91
 
78
 <script>
92
 <script>
103
         creater: 0,
117
         creater: 0,
104
         modifier: 0,
118
         modifier: 0,
105
         created_time: 0,
119
         created_time: 0,
106
-        updated_time: 0
120
+        updated_time: 0,
121
+        check_time:0,
107
       },
122
       },
123
+      check_time:new Date(),
124
+      check_time_str:'',
108
       patient: {
125
       patient: {
109
         id: 0
126
         id: 0
110
       },
127
       },
128
     }
145
     }
129
   },
146
   },
130
   created() {
147
   created() {
148
+    console.log(new Date())
131
     this.admin_users = this.admin_users_prop;
149
     this.admin_users = this.admin_users_prop;
132
-
133
     if (this.record.id == "") {
150
     if (this.record.id == "") {
134
       this.doubleReview.dialysis_item_check = "1";
151
       this.doubleReview.dialysis_item_check = "1";
135
       this.doubleReview.dialysis_parameter_check = "1";
152
       this.doubleReview.dialysis_parameter_check = "1";
139
       this.doubleReview.dialysis_parameter_desc = "";
156
       this.doubleReview.dialysis_parameter_desc = "";
140
       this.doubleReview.vascular_access_desc = "";
157
       this.doubleReview.vascular_access_desc = "";
141
       this.doubleReview.pipeline_connection_desc = "";
158
       this.doubleReview.pipeline_connection_desc = "";
159
+
142
     } else {
160
     } else {
143
       this.doubleReview.dialysis_item_check =
161
       this.doubleReview.dialysis_item_check =
144
         this.record.dialysis_item_check + "";
162
         this.record.dialysis_item_check + "";
157
       this.doubleReview.creater = this.record.creater;
175
       this.doubleReview.creater = this.record.creater;
158
       this.doubleReview.updated_time = this.record.updated_time;
176
       this.doubleReview.updated_time = this.record.updated_time;
159
       this.doubleReview.modifier = this.record.modifier;
177
       this.doubleReview.modifier = this.record.modifier;
178
+      this.doubleReview.check_time = this.record.check_time;
179
+
160
     }
180
     }
161
 
181
 
162
     var date = this.$route.query && this.$route.query.date;
182
     var date = this.$route.query && this.$route.query.date;
176
     // this.patient.id = this.patient_prop.id
196
     // this.patient.id = this.patient_prop.id
177
   },
197
   },
178
   methods: {
198
   methods: {
199
+    didSelectCheckTime: function(time) {
200
+      this.check_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}" +":00");
201
+    },
202
+    selectCheckTimeAction: function() {
203
+      if(this.record.modifier == 0) {
204
+        this.$refs.start_time_picker.open();
205
+      }
206
+    },
179
     checkInf: function() {},
207
     checkInf: function() {},
180
     // initData(doubleReview, patient, doctor) {
208
     // initData(doubleReview, patient, doctor) {
181
     //   //上层传值
209
     //   //上层传值
189
       // ParamsQuery["patient"] = this.patient.id
217
       // ParamsQuery["patient"] = this.patient.id
190
       ParamsQuery["patient"] = this.$route.query.patient_id;
218
       ParamsQuery["patient"] = this.$route.query.patient_id;
191
       ParamsQuery["record_date"] = this.record_date;
219
       ParamsQuery["record_date"] = this.record_date;
220
+      ParamsQuery["check_time"] = this.check_time_str
192
       commitDoubleCheck(ParamsQuery).then(response => {
221
       commitDoubleCheck(ParamsQuery).then(response => {
193
         if (response.data.state == 0) {
222
         if (response.data.state == 0) {
194
           // this.$toast({message: response.data.msg});
223
           // this.$toast({message: response.data.msg});
196
           return false;
225
           return false;
197
         } else {
226
         } else {
198
           Toast.success("提交成功");
227
           Toast.success("提交成功");
199
-
200
           this.doubleReview.created_time =
228
           this.doubleReview.created_time =
201
             response.data.data.doubleCheck.created_time;
229
             response.data.data.doubleCheck.created_time;
202
           this.doubleReview.creater = response.data.data.doubleCheck.creater;
230
           this.doubleReview.creater = response.data.data.doubleCheck.creater;
203
-          this.doubleReview.updated_time =
204
-            response.data.data.doubleCheck.updated_time;
231
+          this.doubleReview.check_time =
232
+            response.data.data.doubleCheck.check_time;
205
           this.doubleReview.modifier = response.data.data.doubleCheck.modifier;
233
           this.doubleReview.modifier = response.data.data.doubleCheck.modifier;
206
 
234
 
207
-          // console.log(response.data.data.doubleCheck)
208
           for (const key in response.data.data.doubleCheck) {
235
           for (const key in response.data.data.doubleCheck) {
209
             this.record[key] = response.data.data.doubleCheck[key];
236
             this.record[key] = response.data.data.doubleCheck[key];
210
           }
237
           }
249
     },
276
     },
250
     getScondCheckDesc: function() {
277
     getScondCheckDesc: function() {
251
       let time = uParseTime(
278
       let time = uParseTime(
252
-        this.doubleReview.updated_time,
253
-        "{y}-{m}-{d} {h}:{i}"
279
+        this.doubleReview.check_time,
280
+        "{y}-{m}-{d} {h}:{i}"+":00"
254
       );
281
       );
255
       if (this.doubleReview.modifier <= 0) {
282
       if (this.doubleReview.modifier <= 0) {
256
         return "";
283
         return "";
278
     getDate: function(val) {
305
     getDate: function(val) {
279
       return parseTime(val, "{y}-{m}-{d} {h}:{i}");
306
       return parseTime(val, "{y}-{m}-{d} {h}:{i}");
280
     }
307
     }
308
+  }, mounted() {
309
+
310
+    if(this.record.id == 0){
311
+      this.check_time_str = parseTime(this.check_time, "{y}-{m}-{d} {h}:{i}" +":00");
312
+    }else{
313
+      if(this.record.modifier == 0){
314
+        this.check_time_str = parseTime(this.check_time, "{y}-{m}-{d} {h}:{i}"+":00");
315
+
316
+      }else{
317
+        this.check_time_str = parseTime(this.record.check_time, "{y}-{m}-{d} {h}:{i}"+":00");
318
+      }
319
+    }
281
   }
320
   }
282
 };
321
 };
283
 </script>
322
 </script>

Diff onderdrukt omdat het te groot bestand
+ 650 - 395
src/pages/main/dialog/OrdersDialog.vue


+ 1 - 1
src/pages/main/dialog/ThorougDialog.vue Bestand weergeven

19
         </div>
19
         </div>
20
 
20
 
21
         <div class="item">
21
         <div class="item">
22
-          <label class="name" for="sjcll">实际超滤量(ml)</label>
22
+          <label class="name" for="sjcll">实际超滤量(L)</label>
23
           <div class="content">
23
           <div class="content">
24
             <input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.actual_ultrafiltration"/>
24
             <input type="tel" @focus="inputFocus" id="sjcll" v-model="formValue.actual_ultrafiltration"/>
25
 
25
 

+ 8 - 0
src/pages/main/dialog/new_order/order_form.vue Bestand weergeven

388
     },
388
     },
389
     didSelectDeliveryWay: function(index) {
389
     didSelectDeliveryWay: function(index) {
390
       this.didCloseSingleOptionDialog();
390
       this.didCloseSingleOptionDialog();
391
+      if(index == -1){
392
+        this.order.delivery_way = ""
393
+        return
394
+      }
391
       this.order.delivery_way = this.delivery_way_options[index].name;
395
       this.order.delivery_way = this.delivery_way_options[index].name;
392
     },
396
     },
393
     selectExecFrequencyAction: function() {
397
     selectExecFrequencyAction: function() {
395
     },
399
     },
396
     didSelectExecFrequency: function(index) {
400
     didSelectExecFrequency: function(index) {
397
       this.didCloseSingleOptionDialog();
401
       this.didCloseSingleOptionDialog();
402
+      if(index == -1){
403
+        this.order.execution_frequency = ""
404
+        return
405
+      }
398
       this.order.execution_frequency = this.execution_frequency_options[
406
       this.order.execution_frequency = this.execution_frequency_options[
399
         index
407
         index
400
       ].name;
408
       ].name;

+ 1 - 0
src/pages/main/dialog/new_order/single_option_dialog.vue Bestand weergeven

11
     <div class="optionsBox">
11
     <div class="optionsBox">
12
       <div class="list">
12
       <div class="list">
13
         <ul>
13
         <ul>
14
+          <li @click="itemClick(-1)">请选择</li>
14
           <li
15
           <li
15
             @click="itemClick(index)"
16
             @click="itemClick(index)"
16
             v-for="(option, index) in options"
17
             v-for="(option, index) in options"

+ 20 - 0
src/pages/main/today/TodayTab.vue Bestand weergeven

548
           var receiver_treatment_access = resp.data.receiver_treatment_access; // 接诊评估
548
           var receiver_treatment_access = resp.data.receiver_treatment_access; // 接诊评估
549
           var predialysis_evaluation = resp.data.predialysis_evaluation; // 透前评估
549
           var predialysis_evaluation = resp.data.predialysis_evaluation; // 透前评估
550
           var doctor_advices = resp.data.doctor_advices; // 临时医嘱
550
           var doctor_advices = resp.data.doctor_advices; // 临时医嘱
551
+
552
+          for (let i = 0; i < doctor_advices.length; i++){
553
+            doctor_advices[i]['is_selected'] = 0
554
+          }
555
+          console.log(doctor_advices)
556
+
557
+
558
+
551
           var double_check = resp.data.double_check; // 双人核对
559
           var double_check = resp.data.double_check; // 双人核对
552
           var assessment_after_dislysis = resp.data.assessment_after_dislysis; // 透后评估
560
           var assessment_after_dislysis = resp.data.assessment_after_dislysis; // 透后评估
553
           var treatment_summary = resp.data.treatment_summary; // 治疗小结
561
           var treatment_summary = resp.data.treatment_summary; // 治疗小结
561
             resp.data.last_assessment_after_dislysis; // 上一次透前评估
569
             resp.data.last_assessment_after_dislysis; // 上一次透前评估
562
           var last_monitor_record = resp.data.last_monitor_record;
570
           var last_monitor_record = resp.data.last_monitor_record;
563
 
571
 
572
+
573
+
574
+
564
           this.patient = patient;
575
           this.patient = patient;
565
           this.schedual = schedual == null ? {} : schedual;
576
           this.schedual = schedual == null ? {} : schedual;
566
           this.prescription = prescription == null ? { id: "" } : prescription;
577
           this.prescription = prescription == null ? { id: "" } : prescription;
577
               : last_predialysis_evaluation;
588
               : last_predialysis_evaluation;
578
 
589
 
579
           this.doctor_advices = doctor_advices == null ? [] : doctor_advices;
590
           this.doctor_advices = doctor_advices == null ? [] : doctor_advices;
591
+
592
+
580
           if (this.doctor_advices.length > 0) {
593
           if (this.doctor_advices.length > 0) {
581
             var group = this.newAdviceGroupObject();
594
             var group = this.newAdviceGroupObject();
582
             var initGroupBlock = function(group, advice) {
595
             var initGroupBlock = function(group, advice) {
718
           var receiver_treatment_access = resp.data.receiver_treatment_access; // 接诊评估
731
           var receiver_treatment_access = resp.data.receiver_treatment_access; // 接诊评估
719
           var predialysis_evaluation = resp.data.predialysis_evaluation; // 透前评估
732
           var predialysis_evaluation = resp.data.predialysis_evaluation; // 透前评估
720
           var doctor_advices = resp.data.doctor_advices; // 临时医嘱
733
           var doctor_advices = resp.data.doctor_advices; // 临时医嘱
734
+
735
+          for (let i = 0; i < doctor_advices.length; i++){
736
+            doctor_advices[i]['is_selected'] = 0
737
+          }
738
+          console.log(doctor_advices)
739
+
740
+
721
           var double_check = resp.data.double_check; // 双人核对
741
           var double_check = resp.data.double_check; // 双人核对
722
           var assessment_after_dislysis = resp.data.assessment_after_dislysis; // 透后评估
742
           var assessment_after_dislysis = resp.data.assessment_after_dislysis; // 透后评估
723
           var treatment_summary = resp.data.treatment_summary; // 治疗小结
743
           var treatment_summary = resp.data.treatment_summary; // 治疗小结

+ 43 - 25
src/pages/main/today/assessmentBefore.vue Bestand weergeven

24
           <span class="content">{{ catheter }}</span>
24
           <span class="content">{{ catheter }}</span>
25
           <span class="unit"></span>
25
           <span class="unit"></span>
26
         </li>
26
         </li>
27
-      </ul>
28
-      <ul>
29
         <li>
27
         <li>
30
           <label>干体重 : </label>
28
           <label>干体重 : </label>
31
           <span class="content">{{ dry_weight?dry_weight:''}}</span>
29
           <span class="content">{{ dry_weight?dry_weight:''}}</span>
32
           <span class="unit">{{ dry_weight?'kg':''}}</span>
30
           <span class="unit">{{ dry_weight?'kg':''}}</span>
33
         </li>
31
         </li>
34
-        <li>
35
-          <label>舒张压 : </label>
36
-          <span class="content">{{ diastolic_blood_pressure?diastolic_blood_pressure:'' }}</span>
37
-          <span class="unit">{{ diastolic_blood_pressure?'mmHg':'' }}</span>
38
-        </li>
39
         <li>
32
         <li>
40
           <label>透析期间 : </label>
33
           <label>透析期间 : </label>
41
           <span class="content">{{ dialysis_interphase }}</span>
34
           <span class="content">{{ dialysis_interphase }}</span>
42
           <span class="unit"></span>
35
           <span class="unit"></span>
43
         </li>
36
         </li>
44
-        <li>
45
-          <label>合并症: </label>
46
-          <span class="content">{{ complication }}</span>
47
-          <span class="unit"></span>
48
-        </li>
37
+
38
+
49
       </ul>
39
       </ul>
50
       <ul>
40
       <ul>
51
         <li>
41
         <li>
64
           <span class="unit"></span>
54
           <span class="unit"></span>
65
         </li>
55
         </li>
66
         <li style="height: 0.6rem;">
56
         <li style="height: 0.6rem;">
67
-          <label>出血</label>
57
+          <label>出血:</label>
68
           <span class="content">{{ is_hemorrhage ? hemorrhage + ';' + hemorrhage_other : '无' }}</span>
58
           <span class="content">{{ is_hemorrhage ? hemorrhage + ';' + hemorrhage_other : '无' }}</span>
69
           <span class="unit"> </span>
59
           <span class="unit"> </span>
70
         </li>
60
         </li>
61
+        <li>
62
+          <label>合并症: </label>
63
+          <span class="content">{{ complication }}</span>
64
+          <span class="unit"></span>
65
+        </li>
66
+        <li>
67
+          <label>透析前症状 : </label>
68
+          <span class="content">{{ symptom_before_dialysis }}</span>
69
+          <span class="unit"></span>
70
+        </li>
71
+
71
       </ul>
72
       </ul>
72
 
73
 
74
+      <ul>
73
 
75
 
74
-      <ul v-if="this.$store.getters.user.template_info.template_id == 2">
75
-        <li>
76
+        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
77
+          <label>透析机型号: </label>
78
+          <span class="content">{{machine_type?machine_type:''}}</span>
79
+          <span class="unit"></span>
80
+        </li>
81
+
82
+        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
76
           <label>透析频次: </label>
83
           <label>透析频次: </label>
77
           <span class="content">{{dialysis_count?dialysis_count:''}}</span>
84
           <span class="content">{{dialysis_count?dialysis_count:''}}</span>
78
           <span class="unit">{{ dialysis_count?'次/周':''}}</span>
85
           <span class="unit">{{ dialysis_count?'次/周':''}}</span>
79
         </li>
86
         </li>
80
-        <li>
87
+        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
81
           <label>血管通路(内瘘) : </label>
88
           <label>血管通路(内瘘) : </label>
82
           <span class="content">{{blood_access_internal_fistula}}</span>
89
           <span class="content">{{blood_access_internal_fistula}}</span>
83
         </li>
90
         </li>
84
-        <li>
91
+        <li  v-if="this.$store.getters.user.template_info.template_id == 2">
85
           <label>血管杂音 : </label>
92
           <label>血管杂音 : </label>
86
           <span class="content">{{getBloodAccessNoise(this.record.blood_access_noise)}}</span>
93
           <span class="content">{{getBloodAccessNoise(this.record.blood_access_noise)}}</span>
87
         </li>
94
         </li>
88
-
89
-        <li>
95
+        <li v-if="this.$store.getters.user.template_info.template_id == 2">
90
           <label>穿刺方式 : </label>
96
           <label>穿刺方式 : </label>
91
           <span class="content">{{getWay(this.record.puncture_way)}}</span>
97
           <span class="content">{{getWay(this.record.puncture_way)}}</span>
92
         </li>
98
         </li>
93
-      </ul>
94
-
95
-      <ul v-if="this.$store.getters.user.template_info.template_id == 2">
96
-        <li style="height: 0.6rem;">
97
-          <label>中心静脉置管</label>
99
+        <li style="height: 0.6rem;" v-if="this.$store.getters.user.template_info.template_id == 2">
100
+          <label>中心静脉置管:</label>
98
           <span class="content">{{getVenousCatheterization(this.record.venous_catheterization)}}</span>
101
           <span class="content">{{getVenousCatheterization(this.record.venous_catheterization)}}</span>
99
           <span class="unit"> </span>
102
           <span class="unit"> </span>
100
         </li>
103
         </li>
104
+
105
+      </ul>
106
+
107
+
108
+
109
+      <ul v-if="this.$store.getters.user.template_info.template_id == 2">
101
         <li style="height: 0.6rem;">
110
         <li style="height: 0.6rem;">
102
-          <label>位置</label>
111
+          <label>位置:</label>
103
           <span class="content" v-if="this.record.venous_catheterization_part != -1">{{getVenousCatheterizationPart(this.record.venous_catheterization_part)}}</span>
112
           <span class="content" v-if="this.record.venous_catheterization_part != -1">{{getVenousCatheterizationPart(this.record.venous_catheterization_part)}}</span>
104
           <span class="content" v-if="this.record.venous_catheterization_part == -1">{{venous_catheterization_part_other}}</span>
113
           <span class="content" v-if="this.record.venous_catheterization_part == -1">{{venous_catheterization_part_other}}</span>
105
         </li>
114
         </li>
115
+
106
         <li>
116
         <li>
107
           <label>中心静脉导管: </label>
117
           <label>中心静脉导管: </label>
108
           <span class="content">{{this.record.ductus_arantii}}</span>
118
           <span class="content">{{this.record.ductus_arantii}}</span>
113
           <span class="content" v-if="this.record.emergency_treatment == -1">{{emergency_treatment_other}}</span>
123
           <span class="content" v-if="this.record.emergency_treatment == -1">{{emergency_treatment_other}}</span>
114
         </li>
124
         </li>
115
       </ul>
125
       </ul>
126
+
116
     </div>
127
     </div>
117
     <div class="note">备注 : <span>{{remark}}</span></div>
128
     <div class="note">备注 : <span>{{remark}}</span></div>
118
   </div>
129
   </div>
133
       }
144
       }
134
     },
145
     },
135
     computed: {
146
     computed: {
147
+      machine_type:function(){
148
+        if (this.record == null || this.record.id == '') {
149
+          return ''
150
+        }
151
+        return this.record.machine_type
152
+
153
+      },
136
       weight_before: function () {
154
       weight_before: function () {
137
         if (this.record == null || this.record.id == '') {
155
         if (this.record == null || this.record.id == '') {
138
           return '-'
156
           return '-'

+ 6 - 6
src/pages/waitingRoom/components/assessmentAfter.vue Bestand weergeven

1
 <template>
1
 <template>
2
    <div class="plate-box">
2
    <div class="plate-box">
3
-    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2> 
4
-    <div class="plate " >   
3
+    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
4
+    <div class="plate " >
5
         <ul>
5
         <ul>
6
              <li>
6
              <li>
7
                 <label>透后体重 : </label>
7
                 <label>透后体重 : </label>
16
              <li>
16
              <li>
17
                 <label>实际超滤量: </label>
17
                 <label>实际超滤量: </label>
18
                 <span class="content">{{actual_ultrafiltration}}</span>
18
                 <span class="content">{{actual_ultrafiltration}}</span>
19
-                <span class="unit">ml</span>
19
+                <span class="unit">L</span>
20
             </li>
20
             </li>
21
              <li>
21
              <li>
22
                 <label>疑血 : </label>
22
                 <label>疑血 : </label>
78
     </div>
78
     </div>
79
     <div class="note">备注 : <span>{{remark}}</span></div>
79
     <div class="note">备注 : <span>{{remark}}</span></div>
80
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
80
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
81
-  </div>    
81
+  </div>
82
 </template>
82
 </template>
83
 
83
 
84
 <script>
84
 <script>
229
         this.info2[2].content = ""
229
         this.info2[2].content = ""
230
         this.info2[3].content = ""
230
         this.info2[3].content = ""
231
         this.info2[4].content = ""
231
         this.info2[4].content = ""
232
-        
232
+
233
         this.info3[0].content = ""
233
         this.info3[0].content = ""
234
         this.info3[1].content = ""
234
         this.info3[1].content = ""
235
         this.info3[2].content = ""
235
         this.info3[2].content = ""
250
         this.info2[2].content = record.actual_displacement
250
         this.info2[2].content = record.actual_displacement
251
         this.info2[3].content = record.symptom_after_dialysis
251
         this.info2[3].content = record.symptom_after_dialysis
252
         this.info2[4].content = record.catheter
252
         this.info2[4].content = record.catheter
253
-        
253
+
254
         this.info3[0].content = record.temperature
254
         this.info3[0].content = record.temperature
255
         this.info3[1].content = record.pulse_frequency
255
         this.info3[1].content = record.pulse_frequency
256
         this.info3[2].content = record.actual_treatment_hour
256
         this.info3[2].content = record.actual_treatment_hour

+ 1 - 1
src/pages/waitingRoom/components/dialog/afterThoroughly.vue Bestand weergeven

36
         <input type="text" class="inputBox" v-model="assessmentAfterDislysis.breathing_rate">
36
         <input type="text" class="inputBox" v-model="assessmentAfterDislysis.breathing_rate">
37
       </div>
37
       </div>
38
       <div class="cell">
38
       <div class="cell">
39
-        <label>实际超滤量(ml)</label>
39
+        <label>实际超滤量(L)</label>
40
         <input type="text" class="inputBox" v-model="assessmentAfterDislysis.actual_ultrafiltration">
40
         <input type="text" class="inputBox" v-model="assessmentAfterDislysis.actual_ultrafiltration">
41
       </div>
41
       </div>
42
       <div class="cell">
42
       <div class="cell">