Browse Source

修改透析处方

张保健 5 years ago
parent
commit
593752b63f

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

@@ -286,7 +286,7 @@ export default {
286 286
 
287 287
     requestDialysisScheduals() {
288 288
       // this.$toast.loading({forbidClick: true, duration: 0})
289
-      this.loading = true;
289
+      // this.loading = true;
290 290
       var type = 0;
291 291
       getDialysisScheduals({ type: type, date: this.selected_date_str })
292 292
         .then(rs => {

+ 42 - 12
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -5,7 +5,7 @@
5 5
       <div class="DialogTit">
6 6
         <span @click="close()" class="iconfont">&#xe6e9;</span>
7 7
         <h1 class="name">透析处方</h1>
8
-        <botton>{{patient.name}}  [透析号 {{patient.dialysis_no}} ]</botton>
8
+        <botton @click="showmsgtip">{{patient.name}}  [透析号 {{patient.dialysis_no}} ]</botton>
9 9
         <span @click="commitInfo" class="success" v-if="isPermission()">完成</span>
10 10
         <span @click="commitInfo" class="success" v-if="!isPermission()"></span>
11 11
 
@@ -310,7 +310,13 @@
310 310
     <long-advice-sub-menu :visibility="advice_visibility" v-on:menu-cancle-three="menuCancleThree"
311 311
                           v-on:menu-comfirm-three="menuComfirmThree" :propsForm="advicePropForm"></long-advice-sub-menu>
312 312
 
313
-    <computer-dialog  ref="computer_dialog"></computer-dialog>
313
+    <msg-tip style="width:500px;" :visibility="msgtip_visibility" :predialysis="predialysis"
314
+                           :last_predialysis="last_predialysis"
315
+                           :record="record"
316
+                           :last_record="last_record"
317
+                           :patient_prop="patient"
318
+                           :prescription_prop="prescription_prop" 
319
+                           v-on:menu-msg-tip="menuMsgTip"></msg-tip>
314 320
 
315 321
   </div>
316 322
 </template>
@@ -325,8 +331,7 @@ import {getDataConfig} from '@/utils/data'
325 331
 
326 332
 import {parseTime} from '@/utils'
327 333
 import LongAdviceSubMenu from './subMenu/LongAdviceSubMenu'
328
-
329
-import OrdersDialog from './OrdersDialog'
334
+import MsgTip from './subMenu/MsgTip'
330 335
 
331 336
 export default {
332 337
   name: 'PrescriptionDialog',
@@ -337,6 +342,18 @@ export default {
337 342
         return new Array()
338 343
       }
339 344
     },
345
+    predialysis:{
346
+      type:Object
347
+    },
348
+    last_predialysis: {
349
+      type:Object
350
+    },
351
+    record:{
352
+      type:Object
353
+    },
354
+    last_record: {
355
+      type:Object
356
+    },
340 357
     patient_prop: {
341 358
       type: Object
342 359
     },
@@ -388,6 +405,14 @@ waitUploadAdvices: {
388 405
         return new Array()
389 406
       }
390 407
     }
408
+  },
409
+   components: {
410
+    LongAdviceSubMenu,
411
+    MsgTip,
412
+    MultipleSubMenu,
413
+
414
+    // MultipleSubMenu,
415
+    CheckBoxSubMenu
391 416
   },
392 417
   data () {
393 418
     return {
@@ -396,6 +421,7 @@ waitUploadAdvices: {
396 421
       signUrl: '',
397 422
       isShowDesc: true,
398 423
       advice_visibility: false,
424
+      msgtip_visibility: false,
399 425
       time: '03:00',
400 426
       timeValue: '',
401 427
       isShowSign: false,
@@ -510,7 +536,13 @@ waitUploadAdvices: {
510 536
     }
511 537
   },
512 538
 
539
+
513 540
   methods: {
541
+    showmsgtip(){
542
+        this.msgtip_visibility = true
543
+        this.isShowDialog = false
544
+      
545
+    },
514 546
     isPermission () {
515 547
       if (this.$store.getters.user.user.user_type == 3 && (this.$store.getters.user.template_info.template_id == 2 || this.$store.getters.user.template_info.template_id == 6)) {
516 548
         return false
@@ -712,6 +744,11 @@ waitUploadAdvices: {
712 744
       this.advice_visibility = false
713 745
       this.isShowDialog = true
714 746
     },
747
+    menuMsgTip: function () {
748
+      this.msgtip_visibility = false
749
+      this.isShowDialog = true
750
+    },
751
+
715 752
     menuComfirmThree: function (targetAdvices) {
716 753
       let params = {
717 754
         advices: targetAdvices,
@@ -1417,18 +1454,11 @@ menuComfirmTwo: function (dialysisPrescription) {
1417 1454
     this.dialysisPrescription.ultrafiltration = this.getFloat(this.dialysisPrescription.ultrafiltration)
1418 1455
     this.dialysisPrescription.target_ultrafiltration = this.getFloat(this.dialysisPrescription.target_ultrafiltration)
1419 1456
   },
1420
-
1421
-  components: {
1422
-    LongAdviceSubMenu,
1423
-    MultipleSubMenu,
1424
-    OrdersDialog,
1425
-    // MultipleSubMenu,
1426
-    CheckBoxSubMenu
1427
-  },
1428 1457
   watch: {
1429 1458
     isShowDialog (val) {
1430 1459
       if (val) {
1431 1460
         this.advice_visibility = false
1461
+    
1432 1462
       }
1433 1463
     }
1434 1464
   }

+ 211 - 0
src/pages/main/dialog/subMenu/MsgTip.vue View File

@@ -0,0 +1,211 @@
1
+<template>
2
+  <div v-if="visibility" class="Dialog">
3
+    <div class="DialogTit">
4
+      <div class="back" @click="cancle()">
5
+        <span class="iconfont">&#xe720; </span>返回
6
+      </div>
7
+      <h1 class="name">{{patient_prop.name}} [透析号 {{patient_prop.dialysis_no}} ]</h1>
8
+      <span @click="comfirm" class="success" >确定</span
9
+      >
10
+    </div>
11
+
12
+    <div class="DialogContent">
13
+        <div class="item">
14
+          <label class="name" for="txms">本次透析日期</label>
15
+          <div class="content">
16
+            <span class="text" id="txms"> {{dialysis_date}}</span>
17
+            
18
+          </div>
19
+        </div>
20
+        <div class="item">
21
+          <label class="name" for="txms">透前体重(kg)</label>
22
+          <div class="content">
23
+            <span class="text" id="txms">{{predialysis.weighing_before}}</span>
24
+            
25
+          </div>
26
+        </div>
27
+        <div class="item">
28
+          <label class="name" for="txms">干体重(kg)</label>
29
+          <div class="content">
30
+            <span class="text" id="txms">{{predialysis.dry_weight}}</span>
31
+            
32
+          </div>
33
+        </div>
34
+        <div class="item">
35
+          <label class="name" for="txms">衣物重(kg)</label>
36
+          <div class="content">
37
+            <span class="text" id="txms">{{predialysis.additional_weight}}</span>
38
+            
39
+          </div>
40
+        </div>
41
+        <div class="item">
42
+          <label class="name" for="txms">体重增加(kg)</label>
43
+          <div class="content">
44
+            <span class="text" id="txms">{{prescription_prop.dewater_amount}}</span>
45
+            
46
+          </div>
47
+        </div>
48
+        <div class="item">
49
+          <label class="name" for="txms">透后体重(kg)</label>
50
+          <div class="content">
51
+            <span class="text" id="txms">{{record.weight_after}}</span>
52
+            
53
+          </div>
54
+        </div>
55
+        <div class="item">
56
+          <label class="name" for="txms">体重减少(kg)</label>
57
+          <div class="content">
58
+            <span class="text" id="txms">{{record.weight_loss}}</span>
59
+            
60
+          </div>
61
+        </div>
62
+        <div class="item">
63
+          <label class="name" for="txms">上次透后体重(kg)</label>
64
+          <div class="content">
65
+            <span class="text" id="txms">{{predialysis.weight_after_last_transparency}}</span>
66
+            
67
+          </div>
68
+        </div>
69
+    </div>
70
+  </div>
71
+</template>
72
+
73
+<script>
74
+  import {parseTime} from '@/utils'
75
+
76
+  export default {
77
+    name: 'LongAdviceSubMenu',
78
+    created () {
79
+    },
80
+    data () {
81
+      return {
82
+        result: [],
83
+        id: 0,
84
+        selectName: ''
85
+      }
86
+    },
87
+    props: {
88
+      predialysis: {
89
+        type: Object
90
+      },
91
+      visibility: {
92
+        type: Boolean,
93
+        default: false
94
+      },
95
+      last_predialysis: {
96
+        type: Object
97
+      },
98
+      record: {
99
+        type: Object
100
+      },
101
+      last_record: {
102
+        type: Object
103
+      },
104
+      patient_prop: {
105
+        type: Object
106
+      },
107
+      prescription_prop: {
108
+        type: Object
109
+      },
110
+    },
111
+    computed: {
112
+    dialysis_date: function () {
113
+      return parseTime(this.$route.query.date, '{y}/{m}/{d}')
114
+      }
115
+    },
116
+    methods: {
117
+
118
+
119
+      cancle: function () {
120
+        this.$emit('menu-msg-tip')
121
+      },
122
+      comfirm: function () {
123
+        this.$emit('menu-msg-tip')
124
+      },
125
+      getValue: function () {
126
+        let form = {}
127
+
128
+        let results = []
129
+
130
+        for (let i = 0; i < this.propsForm.list.length; i++){
131
+          for (let a = 0; a < this.propsForm.result.length; a++){
132
+            if( this.propsForm.list[i].id == this.propsForm.result[a]){
133
+              results.push(this.propsForm.list[i])
134
+            }
135
+          }
136
+        }
137
+
138
+        var obj5={}
139
+        results = results.reduce((cur, next) => {
140
+          obj5[next.id] ? '' : obj5[next.id] = true && cur.push(next)
141
+          return cur
142
+        }, [])
143
+
144
+        results
145
+
146
+        return results
147
+      },
148
+
149
+    },
150
+    watch: {
151
+      visibility (val) {
152
+        //初始化数据操作
153
+      }
154
+    }
155
+  }
156
+</script>
157
+
158
+<style style="stylesheet/scss" lang="scss" scoped>
159
+  .optionsBox {
160
+  background: #fff;
161
+  max-height: 10rem;
162
+  min-height: 5rem;
163
+  @media only screen and (max-width: 812px) {
164
+  min-height: 8rem !important;
165
+  }
166
+  ul {
167
+  overflow-y: scroll;
168
+  max-height: 9rem;
169
+  li {
170
+  height: 1.1rem;
171
+  line-height: 1.1rem;
172
+  border-bottom: 1px #e5e5e5 solid;
173
+  padding: 0 0.38rem;
174
+  font-size: 0.36rem;
175
+  color: $title-color;
176
+  }
177
+  .tick {
178
+  position: relative;
179
+  &::before {
180
+  content: "";
181
+  display: inline-block;
182
+  border: 2px solid $main-color;
183
+  border-top-width: 0;
184
+  border-right-width: 0;
185
+  width: 0.3rem;
186
+  height: 0.15rem;
187
+  -webkit-transform: rotate(-50deg);
188
+  position: absolute;
189
+  top: 0.38rem;
190
+  right: 0.44rem;
191
+  }
192
+  }
193
+  }
194
+  }
195
+  .CheckBox {
196
+  background: #fff;
197
+  max-height: 6.8rem;
198
+  min-height: 5rem;
199
+  overflow-y: scroll;
200
+  @media only screen and (max-width: 812px) {
201
+  max-height: 8rem !important;
202
+  min-height: 8rem !important;
203
+  }
204
+
205
+  ul {
206
+  li {
207
+  line-height: 1rem;
208
+  }
209
+  }
210
+  }
211
+</style>

+ 4 - 0
src/pages/main/today/TodayTab.vue View File

@@ -113,6 +113,10 @@
113 113
                            :waitUploadAdvices="waitUploadAdvices" :is_open="is_open"
114 114
                            @close="closePrescriptionDialog" @prescription="prescriptionFunc"
115 115
                            :admin_users_prop="admin_users" @advice="adviceFunc"
116
+                           :predialysis="predialysis_evaluation"
117
+                           :last_predialysis="last_predialysis_evaluation"
118
+                           :record="assessment_after_dislysis"
119
+                           :last_record="last_assessment_after_dislysis"
116 120
                            @longSolution="longSolutionFunc" ref="prescription_dialog"></prescription-dialog>
117 121
     </van-popup>
118 122