Browse Source

添加透析耗材

csx 5 years ago
parent
commit
248801d09e

+ 8 - 0
src/api/stock.js View File

@@ -0,0 +1,8 @@
1
+import request from '@/utils/request'
2
+
3
+export function getWarehouseGoodInfo(type_id){
4
+  return request({
5
+    url:'/m/api/warehouse/query?type_id='+type_id,
6
+    method:'get',
7
+  })
8
+}

+ 12 - 1
src/pages/main/dialog/AcceptsDialog.vue View File

@@ -48,6 +48,10 @@
48 48
             <el-radio v-model="receiveTreatmentAsses.sick_condition" label="2">严重</el-radio>
49 49
             <el-radio v-model="receiveTreatmentAsses.sick_condition" label="3">危</el-radio>
50 50
           </el-form-item>
51
+          <el-form-item label-width="100dp" label="其他病情 : "
52
+                        v-if="isShow('其他病情')">
53
+            <el-input v-model="receiveTreatmentAsses.sick_condition_other" style="width: 400px"></el-input>
54
+          </el-form-item>
51 55
           <el-form-item label-width="100dp" label="跌倒风险评估评分 : "
52 56
                         v-if="isShow('跌倒风险评估评分')">
53 57
             <el-input v-model="receiveTreatmentAsses.score" style="width: 100px"></el-input>
@@ -110,6 +114,7 @@
110 114
           nutrition: '1',
111 115
           psychological_assessment: '1',
112 116
           psychological_assessment_other: '',
117
+          sick_condition_other:'',
113 118
           score:'',
114 119
         },
115 120
         patient: {
@@ -149,6 +154,8 @@
149 154
               this.receiveTreatmentAsses.psychological_assessment = this.accepts.psychological_assessment + ''
150 155
               this.receiveTreatmentAsses.psychological_assessment_other = this.accepts.psychological_assessment_other
151 156
               this.receiveTreatmentAsses.score = this.accepts.score
157
+              this.receiveTreatmentAsses.sick_condition_other = this.accepts.sick_condition_other
158
+
152 159
             }
153 160
           }
154 161
         })
@@ -164,7 +171,7 @@
164 171
           this.accepts.intake == 0 &&
165 172
           this.accepts.nutrition == 0 &&
166 173
           this.accepts.psychological_assessment == 0 &&
167
-          this.accepts.psychological_assessment_other == ''&&
174
+          this.accepts.psychological_assessment_other == ''&&this.accepts.sick_condition_other == ''&&
168 175
           this.accepts.score == ''
169 176
 
170 177
       ) {
@@ -190,6 +197,8 @@
190 197
                 this.receiveTreatmentAsses.psychological_assessment = this.accepts.psychological_assessment + ''
191 198
                 this.receiveTreatmentAsses.psychological_assessment_other = this.accepts.psychological_assessment_other + ''
192 199
                 this.receiveTreatmentAsses.score = this.accepts.score
200
+                this.receiveTreatmentAsses.sick_condition_other = this.accepts.sick_condition_other
201
+
193 202
 
194 203
               }
195 204
             }
@@ -208,6 +217,8 @@
208 217
           this.receiveTreatmentAsses.psychological_assessment = this.accepts.psychological_assessment + ''
209 218
           this.receiveTreatmentAsses.psychological_assessment_other = this.accepts.psychological_assessment_other + ''
210 219
           this.receiveTreatmentAsses.score = this.accepts.score
220
+          this.receiveTreatmentAsses.sick_condition_other = this.accepts.sick_condition_other
221
+
211 222
 
212 223
 
213 224
         }

File diff suppressed because it is too large
+ 935 - 888
src/pages/main/dialog/MonitDialog.vue


+ 53 - 18
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -158,8 +158,8 @@
158 158
 
159 159
           </div>
160 160
         </div>
161
-        <div class="item" v-if="isShow('电导')">
162
-          <label class="name" for="dtl">电导率(mS/cm)</label>
161
+        <div class="item" v-if="isShow('电导')">
162
+          <label class="name" for="dtl">电导度(mS/m)</label>
163 163
           <div class="content">
164 164
 
165 165
             <input type="tel" @focus="inputFocus" id="dtl" v-model="dialysisPrescription.conductivity"/>
@@ -220,7 +220,12 @@
220 220
           </div>
221 221
         </div>
222 222
 
223
-
223
+        <div  class="item"  v-if="isShow('目标KT/V')">
224
+          <label class="name" for="knj">目标KT/V</label>
225
+          <div class="content">
226
+            <input  @focus="inputFocus" id="dt" v-model="dialysisPrescription.target_ktv"/>
227
+          </div>
228
+        </div>
224 229
 
225 230
 
226 231
         <div @click="showSubMenu('blood_access')" class="item" ref="blood_access" v-if="isShow('血管通路')">
@@ -240,15 +245,14 @@
240 245
 
241 246
 
242 247
 
243
-        <!--<div @click="showSubMenu('consumable_material')" class="item" ref="consumable_material" v-if="config.is_open == 1">-->
244
-          <!--<label class="name" for="knj">透析耗材</label>-->
245
-          <!--<div class="content">-->
246
-            <!--<span class="text" id="knjaa">去配置</span>-->
247
-            <!--<span class="iconfont">&#xe6f9;</span>-->
248
-          <!--</div>-->
249
-        <!--</div>-->
250
-
251
-
248
+        <div @click="dialysisGoodsClick()" class="item" ref="consumable_material" v-if="config.is_open == 1">
249
+          <label class="name" for="knj">透析耗材</label>
250
+          <div class="content">
251
+            <span class="text" id="knjaa" v-if="this.prescription_prop.id > 0">去修改</span>
252
+            <!--<span class="text" id="knjaa" v-else-if="this.prescription_prop.id.length == 0">去配置</span>-->
253
+            <span class="iconfont">&#xe6f9;</span>
254
+          </div>
255
+        </div>
252 256
 
253 257
 
254 258
         <div class="item" style="display: none">
@@ -285,8 +289,9 @@
285 289
     </div>
286 290
     <!--<two-menu title="二级菜单" v-show="isShowModeSubMenu"></two-menu>-->
287 291
     <check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"  v-on:menu-empty="menuEmpty"
288
-                        :propsForm="propForm"></check-box-sub-menu>
292
+                        :propsForm="propForm" ></check-box-sub-menu>
289 293
     <!--<multiple-sub-menu :goodTypes="types" :visibility="is_show" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm" :propsForm="propForm"></multiple-sub-menu>-->
294
+    <multiple-sub-menu :goodTypes="types" :info="info" :visibility="is_show"  v-on:menu-cancel-two="menuCancleTwo" v-on:menu-comfirm-two="menuComfirmTwo" :propsForm="propForm" :dialysisPrescription="dialysisPrescription"></multiple-sub-menu>
290 295
 
291 296
     <mt-datetime-picker
292 297
       ref="picker"
@@ -300,15 +305,12 @@
300 305
 
301 306
 
302 307
 
303
-
304
-
305
-
306 308
   </div>
307 309
 </template>
308 310
 
309 311
 <script>
310 312
   import CheckBoxSubMenu from "./subMenu/checkBoxSubMenu";
311
-  // import MultipleSubMenu from "./subMenu/multipleSubMenu"
313
+  import MultipleSubMenu from "./subMenu/multipleSubMenu"
312 314
   import {commitDialysisPrescription, postSign, postSolution} from "@/api/dialysis";
313 315
   import {Toast} from 'vant';
314 316
   import {getDataConfig} from '@/utils/data';
@@ -338,6 +340,12 @@
338 340
           return new Array();
339 341
         }
340 342
       },
343
+      info:{
344
+        type:Array,
345
+        default: function () {
346
+          return new Array();
347
+        }
348
+      },
341 349
       prescription_prop: {
342 350
         type: Object,
343 351
       },
@@ -363,7 +371,7 @@
363 371
         displaceLiquiPartOptions:[],
364 372
         bloodAccessOptions:[],
365 373
 
366
-
374
+        is_show:false,
367 375
 
368 376
         perfusion_apparatus: {},
369 377
         replacementWays: [],
@@ -416,6 +424,14 @@
416 424
           blood_access:"",
417 425
           ultrafiltration:"",
418 426
           body_fluid_other:"",
427
+          niprocart:'',
428
+          jms:'',
429
+          fistula_needle_set:'',
430
+          fistula_needle_set_16:'',
431
+          hemoperfusion:'',
432
+          dialyser_sterilised:'',
433
+          filtryzer:'',
434
+          target_ktv:'',
419 435
         },
420 436
         anticoagulant: {
421 437
           id: 0,
@@ -928,10 +944,28 @@
928 944
         } else {
929 945
           return '0.0';
930 946
         }
947
+      },dialysisGoodsClick:function () {
948
+        this.isShowDialog = false
949
+        this.is_show = true
950
+      },menuCancleTwo:function () {
951
+        this.isShowDialog = true
952
+        this.is_show = false
953
+
954
+      },menuComfirmTwo:function (dialysisPrescription) {
955
+        this.isShowDialog = true
956
+        this.is_show = false
957
+        this.dialysisPrescription.niprocart = dialysisPrescription.niprocart
958
+        this.dialysisPrescription.jms = dialysisPrescription.jms
959
+        this.dialysisPrescription.fistula_needle_set = dialysisPrescription.fistula_needle_set
960
+        this.dialysisPrescription.fistula_needle_set_16 = dialysisPrescription.fistula_needle_set_16
961
+        this.dialysisPrescription.hemoperfusion = dialysisPrescription.hemoperfusion
962
+        this.dialysisPrescription.dialyser_sterilised = dialysisPrescription.dialyser_sterilised
963
+        this.dialysisPrescription.filtryzer = dialysisPrescription.filtryzer
931 964
 
932 965
       }
933 966
     },
934 967
     created() {
968
+
935 969
       if (this.$store.getters.user.user.user_type == 2) {
936 970
         this.isShowSign = true;
937 971
 
@@ -1020,6 +1054,7 @@
1020 1054
     },
1021 1055
 
1022 1056
     components: {
1057
+      MultipleSubMenu,
1023 1058
       // MultipleSubMenu,
1024 1059
       CheckBoxSubMenu
1025 1060
     }

+ 3 - 2
src/pages/main/dialog/new_order/single_option_dialog.vue View File

@@ -73,9 +73,10 @@ export default {
73 73
   background: #fff;
74 74
   max-height: 10.6rem;
75 75
   min-height: 5rem;
76
-  overflow-y: scroll;
77 76
   ul {
78
-    li {
77
+  overflow-y: scroll;
78
+  max-height: 9.0rem;
79
+  li {
79 80
       height: 1rem;
80 81
       line-height: 1rem;
81 82
       border-bottom: 1px #e5e5e5 solid;

+ 2 - 0
src/pages/main/dialog/subMenu/checkBoxSubMenu.vue View File

@@ -101,6 +101,8 @@ export default {
101 101
   min-height: 5rem;
102 102
   overflow-y: scroll;
103 103
   ul {
104
+  overflow-y: scroll;
105
+  max-height: 9.0rem;
104 106
     li {
105 107
       height: 1.1rem;
106 108
       line-height: 1.1rem;

+ 295 - 44
src/pages/main/dialog/subMenu/multipleSubMenu.vue View File

@@ -1,44 +1,295 @@
1
-<!--<template>-->
2
-  <!--<div class="Dialog">-->
3
-    <!--<div class="DialogTit">-->
4
-      <!--<span class="iconfont" @click="closeDialog()">&#xe720; 返回</span>-->
5
-      <!--<h1 class="name">透析耗材</h1>-->
6
-      <!--<span class="success">完成</span>-->
7
-    <!--</div>-->
8
-
9
-    <!--<div class="item"  v-for="item in goodTypes" :key="item.id" value="item" @click="itemClick(item.id)">-->
10
-      <!--<label class="name" for="knj">{{item.type_name}}</label>-->
11
-      <!--<div class="content">-->
12
-        <!--<span class="text" id="knjaa"></span>-->
13
-        <!--<span class="iconfont">&#xe6f9;</span>-->
14
-      <!--</div>-->
15
-    <!--</div>-->
16
-  <!--</div>-->
17
-
18
-  <!--<check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"  v-on:menu-empty="menuEmpty"-->
19
-                      <!--:propsForm="propForm"></check-box-sub-menu>-->
20
-
21
-<!--</template>-->
22
-
23
-<!--<script>-->
24
-  <!--export default {-->
25
-    <!--name: 'multipleSubMenu',-->
26
-    <!--props: {-->
27
-      <!--goodTypes: {-->
28
-        <!--type: Array,-->
29
-        <!--default: function () {-->
30
-          <!--return new Array();-->
31
-        <!--}-->
32
-      <!--}-->
33
-    <!--},methods:{-->
34
-      <!--itemClick(type_id){-->
35
-
36
-      <!--}-->
37
-
38
-    <!--}-->
39
-  <!--}-->
40
-<!--</script>-->
41
-
42
-<!--<style scoped>-->
43
-
44
-<!--</style>-->
1
+<template>
2
+  <div>
3
+    <div v-if="visibility" class="Dialog">
4
+      <div class="DialogTit">
5
+        <span class="iconfont" @click="closeDialog()">&#xe720; 返回</span>
6
+        <h1 class="name">透析耗材</h1>
7
+        <span class="success">完成</span>
8
+      </div>
9
+      <div class="DialogContent" id="dialogTop">
10
+        <div class="item" value="item" @click="itemClick(83,'niprocart')" ref="niprocart">
11
+          <label class="name">血液透析干粉</label>
12
+          <div class="content">
13
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.niprocart)}}</span>
14
+            <span class="iconfont">&#xe6f9;</span>
15
+          </div>
16
+        </div>
17
+        <div class="item" value="item" @click="itemClick(80,'jms')" ref="jms">
18
+          <label class="name">一次性使用动静脉穿刺针</label>
19
+          <div class="content">
20
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.jms)}}</span>
21
+            <span class="iconfont">&#xe6f9;</span>
22
+          </div>
23
+        </div>
24
+        <div class="item" value="item" @click="itemClick(81,'fistula_needle_set')" ref="fistula_needle_set">
25
+          <label class="name">内瘘管翼状针</label>
26
+          <div class="content">
27
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.fistula_needle_set)}}</span>
28
+            <span class="iconfont">&#xe6f9;</span>
29
+          </div>
30
+        </div>
31
+        <div class="item" value="item" @click="itemClick(82,'fistula_needle_set_16')" ref="fistula_needle_set_16">
32
+          <label class="name">内瘘管翼状针16G</label>
33
+          <div class="content">
34
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.fistula_needle_set_16)}}</span>
35
+            <span class="iconfont">&#xe6f9;</span>
36
+          </div>
37
+        </div>
38
+        <div class="item" value="item" @click="itemClick(85,'hemoperfusion')" ref="hemoperfusion">
39
+          <label class="name">一次性使用血液灌流器</label>
40
+          <div class="content">
41
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.hemoperfusion)}}</span>
42
+            <span class="iconfont">&#xe6f9;</span>
43
+          </div>
44
+        </div>
45
+        <div class="item" value="item" @click="itemClick(84,'dialyser_sterilised')" ref="dialyser_sterilised">
46
+          <label class="name">空心纤维血液透析器</label>
47
+          <div class="content">
48
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.dialyser_sterilised)}}</span>
49
+            <span class="iconfont">&#xe6f9;</span>
50
+          </div>
51
+        </div>
52
+        <div class="item" value="item" @click="itemClick(79,'filtryzer')" ref="filtryzer">
53
+          <label class="name">中空纤维透析器</label>
54
+          <div class="content">
55
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.filtryzer)}}</span>
56
+            <span class="iconfont">&#xe6f9;</span>
57
+          </div>
58
+        </div>
59
+      </div>
60
+    </div>
61
+    <new-check-box-sub-menu :show="is_show" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"
62
+                            v-on:menu-empty="menuEmpty"
63
+                            :propsForm="propForm"></new-check-box-sub-menu>
64
+  </div>
65
+</template>
66
+
67
+<script>
68
+  import {getWarehouseGoodInfo} from '@/api/stock'
69
+
70
+  import NewCheckBoxSubMenu from './newCheckBoxSubMenu'
71
+
72
+  export default {
73
+    name: 'multipleSubMenu',
74
+    components: {NewCheckBoxSubMenu},
75
+    data () {
76
+      return {
77
+        is_show: false,
78
+        propForm: {
79
+          title: '',
80
+          list: [],
81
+          optionList: [],
82
+          isMultiple: 2,
83
+          result: [], //选中的值
84
+          type: 1, //用来区分不同子菜单,方便对返回值进行赋值
85
+          selectId: 0
86
+        }
87
+      }
88
+    },
89
+
90
+    props: {
91
+      dialysisPrescription: {
92
+        type: Object,
93
+      },
94
+      info: {
95
+        type: Array,
96
+        default: function () {
97
+          return new Array()
98
+        }
99
+      },
100
+      visibility: {
101
+        type: Boolean,
102
+        default: false
103
+      }
104
+    }, methods: {
105
+      success: function () {
106
+        this.$emit('menu-comfirm-two', this.dialysisPrescription)
107
+      }, closeDialog () {
108
+        this.$emit('menu-cancel-two')
109
+      },
110
+      itemClick (type_id, name) {
111
+        getWarehouseGoodInfo(type_id).then(response => {
112
+          if (response.data.state == 0) {
113
+            Toast.fail(response.data.msg)
114
+            return false
115
+          } else {
116
+            switch (name) {
117
+              case 'niprocart':
118
+                this.propForm.type = 1
119
+                this.propForm.title = '血液透析干粉'
120
+                this.propForm.list = []
121
+                this.propForm.optionList = []
122
+                this.propForm.optionList = response.data.data.list
123
+                this.propForm.isMultiple = 1
124
+                this.propForm.selectId = this.dialysisPrescription.niprocart
125
+                this.propForm.click_ref = 'niprocart'
126
+                this.is_show = true
127
+                this.visibility = false
128
+
129
+                break
130
+              case 'jms':
131
+                this.propForm.type = 2
132
+                this.propForm.title = '一次性使用动静脉穿刺针'
133
+                this.propForm.list = []
134
+                this.propForm.optionList = []
135
+                this.propForm.optionList = response.data.data.list
136
+                this.propForm.isMultiple = 1
137
+                this.propForm.selectId = this.dialysisPrescription.jms
138
+                this.propForm.click_ref = 'jms'
139
+                this.is_show = true
140
+                this.visibility = false
141
+
142
+                break
143
+
144
+              case 'fistula_needle_set':
145
+                this.propForm.type = 3
146
+                this.is_show = true
147
+                this.visibility = false
148
+                this.propForm.title = '内瘘管翼状针'
149
+
150
+                this.propForm.list = []
151
+                this.propForm.optionList = []
152
+                this.propForm.optionList = response.data.data.list
153
+                this.propForm.isMultiple = 1
154
+                this.propForm.selectId = this.dialysisPrescription.fistula_needle_set
155
+                this.propForm.click_ref = 'perfusion_apparatus'
156
+
157
+                break
158
+              case 'fistula_needle_set_16':
159
+                this.propForm.type = 4
160
+                this.is_show = true
161
+                this.visibility = false
162
+                this.propForm.title = '内瘘管翼状针16G'
163
+
164
+                this.propForm.list = []
165
+                this.propForm.optionList = []
166
+                this.propForm.optionList = response.data.data.list
167
+                this.propForm.isMultiple = 1
168
+                this.propForm.selectId = this.dialysisPrescription.fistula_needle_set_16
169
+                this.propForm.click_ref = 'fistula_needle_set_16'
170
+
171
+                break
172
+
173
+              case 'hemoperfusion':
174
+                this.propForm.type = 5
175
+
176
+                this.propForm.title = '一次性使用血液灌流器'
177
+                this.is_show = true
178
+                this.visibility = false
179
+                this.propForm.list = []
180
+                this.propForm.optionList = []
181
+                this.propForm.optionList = response.data.data.list
182
+                this.propForm.isMultiple = 1
183
+                this.propForm.selectId = this.dialysisPrescription.hemoperfusion
184
+                this.propForm.click_ref = 'hemoperfusion'
185
+                break
186
+              case 'dialyser_sterilised':
187
+                this.propForm.type = 6
188
+
189
+                this.propForm.title = '空心纤维血液透析器'
190
+                this.is_show = true
191
+                this.visibility = false
192
+                this.propForm.list = []
193
+                this.propForm.optionList = []
194
+                this.propForm.optionList = response.data.data.list
195
+                this.propForm.isMultiple = 1
196
+                this.propForm.selectId = this.dialysisPrescription.dialyser_sterilised
197
+                this.propForm.click_ref = 'dialyser_sterilised'
198
+                break
199
+              case 'filtryzer':
200
+                this.propForm.type = 7
201
+                this.is_show = true
202
+                this.visibility = false
203
+                this.propForm.title = '中空纤维透析器'
204
+                this.propForm.list = []
205
+                this.propForm.optionList = []
206
+                this.propForm.optionList = response.data.data.list
207
+                this.propForm.isMultiple = 1
208
+                this.propForm.selectId = this.dialysisPrescription.filtryzer
209
+                this.propForm.click_ref = 'filtryzer'
210
+                break
211
+
212
+            }
213
+          }
214
+        })
215
+      }, getValue (id) {
216
+        if (id == 0 || id == '') {
217
+          return ''
218
+        }
219
+        for (let i = 0; i < this.info.length; i++) {
220
+          if (this.info[i].id == id) {
221
+            return this.info[i].specification_name
222
+          }
223
+        }
224
+      }, menuCancle: function () {
225
+        this.is_show = false
226
+        this.visibility = true
227
+      }, menuComfirm: function (val) {
228
+        this.is_show = false
229
+        this.visibility = true
230
+        this.$nextTick(() => {
231
+          if (this.$refs[this.propForm.click_ref] != undefined && this.$refs[this.propForm.click_ref] != null) {
232
+            this.$refs[this.propForm.click_ref].scrollIntoView()
233
+          }
234
+        })
235
+        switch (val.type) {
236
+          case 1:
237
+            if (val.selectId != -2) {
238
+              this.dialysisPrescription.niprocart = val.selectId
239
+            }
240
+            break
241
+          case 2:
242
+            if (val.selectId != -2) {
243
+              this.dialysisPrescription.jms = val.selectId
244
+            }
245
+            break
246
+          case 3:
247
+            if (val.selectId != -2) {
248
+              this.dialysisPrescription.fistula_needle_set = val.selectId
249
+            }
250
+            break
251
+          case 4:
252
+            if (val.selectId != -2) {
253
+
254
+              this.dialysisPrescription.fistula_needle_set_16 = val.selectId
255
+            }
256
+            break
257
+          case 5:
258
+            if (val.selectId != -2) {
259
+
260
+              this.dialysisPrescription.hemoperfusion = val.selectId
261
+            }
262
+            break
263
+          case 6:
264
+            if (val.selectId != -2) {
265
+              this.dialysisPrescription.dialyser_sterilised = val.selectId
266
+            }
267
+            break
268
+          case 7:
269
+            if (val.selectId != -2) {
270
+              this.dialysisPrescription.filtryzer = val.selectId
271
+            }
272
+            break
273
+        }
274
+      },
275
+
276
+    }
277
+  }
278
+</script>
279
+
280
+<style style="stylesheet/scss" scoped>
281
+  .DialogContent {
282
+  // padding-bottom:2rem !important;
283
+
284
+  .textarea {
285
+  width: 100%;
286
+  height: 2.4rem;
287
+  line-height: 0.6rem;
288
+  color: $pgh-color;
289
+  font-size: 0.28rem;
290
+  padding-left: 0.36rem;
291
+  border: none;
292
+  border-bottom: 1px #e5e5e5 solid;
293
+  }
294
+  }
295
+</style>

+ 123 - 0
src/pages/main/dialog/subMenu/newCheckBoxSubMenu.vue View File

@@ -0,0 +1,123 @@
1
+<template>
2
+  <div v-if="show" class="Dialog">
3
+    <div class="DialogTit">
4
+      <div class="back" @click="cancle()"><span class="iconfont" >&#xe720; </span>返回</div>
5
+      <h1 class="name">{{propsForm.title}}</h1>
6
+      <span  @click="comfirm" class="success">  </span>
7
+    </div>
8
+    <div  class="optionsBox">
9
+      <div class="list">
10
+        <ul>
11
+          <li  @click="itemClick(-2)"  :key="-2" value="-2" >请选择</li>
12
+          <li  @click="itemClick(item.id)"  v-for="item in propsForm.optionList" :key="item.id" value="item" :class="propsForm.selectId == item.id? 'tick':'' ">{{item.name}}</li>
13
+        </ul>
14
+      </div>
15
+    </div>
16
+  </div>
17
+</template>
18
+
19
+
20
+<script>
21
+
22
+  export default {
23
+    name: "newCheckBoxSubMenu",
24
+    created() {},
25
+    data() {
26
+      return {
27
+        result: [],
28
+        id: 0,
29
+        selectName: ""
30
+      };
31
+    },
32
+    props: {
33
+      propsForm: {
34
+        type: Object
35
+      },
36
+      show: {
37
+        type: Boolean,
38
+        default: false
39
+      }
40
+    },
41
+    methods: {
42
+      cancle: function() {
43
+        this.$emit("menu-cancle");
44
+      },
45
+      comfirm: function() {
46
+        this.$emit("menu-comfirm", this.getValue());
47
+      },
48
+      getValue: function() {
49
+        let form = {};
50
+        if (this.propsForm.isMultiple == 2) {
51
+          form["type"] = this.propsForm.type;
52
+          form["result"] = this.propsForm.result;
53
+          // form["click_ref"] = this.propsForm.click_ref
54
+        } else {
55
+          form["type"] = this.propsForm.type;
56
+          form["selectId"] = this.propsForm.selectId;
57
+          // form["click_ref"] = this.propsForm.click_ref
58
+        }
59
+        return form;
60
+      },
61
+      itemClick: function(id) {
62
+        if(id == -2){
63
+          this.$emit("menu-empty", this.getValue());
64
+        }
65
+        this.propsForm.selectId = id;
66
+        this.$emit("menu-comfirm", this.getValue());
67
+      }
68
+    },
69
+    watch: {
70
+      visibility(val) {
71
+        //初始化数据操作
72
+      }
73
+    }
74
+  };
75
+
76
+</script>
77
+
78
+<style style="stylesheet/scss" lang="scss" scoped>
79
+  .optionsBox {
80
+  background: #fff;
81
+  max-height: 10.6rem;
82
+  min-height: 5rem;
83
+  overflow-y: scroll;
84
+  ul {
85
+  li {
86
+  height: 1.1rem;
87
+  line-height: 1.1rem;
88
+  border-bottom: 1px #e5e5e5 solid;
89
+  padding: 0 0.38rem;
90
+  font-size: 0.36rem;
91
+  color:$title-color;
92
+  }
93
+  .tick {
94
+  position: relative;
95
+  &::before {
96
+  content: "";
97
+  display: inline-block;
98
+  border: 2px solid $main-color;
99
+  border-top-width: 0;
100
+  border-right-width: 0;
101
+  width: 0.3rem;
102
+  height: 0.15rem;
103
+  -webkit-transform: rotate(-50deg);
104
+  position: absolute;
105
+  top: 0.38rem;
106
+  right: 0.44rem;
107
+  }
108
+  }
109
+  }
110
+  }
111
+  .CheckBox {
112
+  background: #fff;
113
+  max-height: 6.8rem;
114
+  min-height: 5rem;
115
+  overflow-y: scroll;
116
+
117
+  ul {
118
+  li {
119
+  line-height: 1rem;
120
+  }
121
+  }
122
+  }
123
+</style>

+ 1 - 1
src/pages/main/template/DialysisPrintOrderTwo.vue View File

@@ -77,7 +77,7 @@
77 77
                   <check-box text="昏迷" :checked="receiverTreatmentAccess.consciousness==3?true:false"></check-box>
78 78
                 </div>
79 79
                 <div class="inline_block"  style="margin-left: 20px;">
80
-                  出血:
80
+                  活动性出血:
81 81
                   <check-box text="无" :checked="predialysis.is_hemorrhage==2?true:false"></check-box>
82 82
                   <check-box text="异常" :checked="predialysis.is_hemorrhage==1?true:false"></check-box>
83 83
                   (&nbsp;

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

@@ -107,7 +107,7 @@
107 107
 
108 108
     <van-popup title="透析处方" v-model="menuList[1].showPopup" :overlay="true" :close-on-click-overlay="false">
109 109
       <prescription-dialog :patient_prop="patient" :solution_prop="solution" :machines_prop="devices" :config="config"
110
-                           :prescription_prop="prescription" @finish="closePrescriptionDialog" :operators="operators" :types="goodTypes"
110
+                           :prescription_prop="prescription" @finish="closePrescriptionDialog" :operators="operators" :types="goodTypes" :info="goodInfos"
111 111
                            @close="closePrescriptionDialog" @prescription="prescriptionFunc" @longSolution="longSolutionFunc" ref="prescription_dialog"></prescription-dialog>
112 112
     </van-popup>
113 113
 
@@ -289,6 +289,7 @@ export default {
289 289
       scrollTop: "",
290 290
       goTopShow: false,
291 291
       goodTypes:[],
292
+      goodInfos:[],
292 293
     };
293 294
   },
294 295
   computed: {
@@ -454,7 +455,8 @@ export default {
454 455
         monitor.diastolic_blood_pressure;
455 456
       this.monitor_records[monitor_index].systolic_blood_pressure =
456 457
         monitor.systolic_blood_pressure;
457
-
458
+      this.monitor_records[monitor_index].conductivity =
459
+        monitor.conductivity;
458 460
       this.monitor_records.sort((a, b) => b.operate_time - a.operate_time);
459 461
 
460 462
       // if (monitor_index >= 0) {

+ 5 - 1
src/pages/main/today/acceptsAssessment.vue View File

@@ -30,6 +30,7 @@
30 30
           <label>病情 </label>
31 31
           <span class="content">{{sickCondition}} </span>
32 32
         </li>
33
+
33 34
         <li style="height: 0.6rem;" v-if="isShow('跌倒风险评估评分')">
34 35
           <label>跌倒风险评估评分:</label>
35 36
           <span class="content">{{this.record.score}}分</span>
@@ -46,7 +47,6 @@
46 47
       <!-- </ul>
47 48
 
48 49
 
49
-
50 50
       <ul > -->
51 51
         <li style="height: 0.6rem;" v-if="isShow('营养状况')">
52 52
           <label>营养状况:</label>
@@ -60,6 +60,10 @@
60 60
           <label>心理评估异常原因:</label>
61 61
           <span class="content">{{this.record.psychological_assessment_other}}</span>
62 62
         </li>
63
+        <li style="height: 0.6rem;" v-if="isShow('其他病情')">
64
+          <label>其他病情 </label>
65
+          <span class="content">{{this.record.sick_condition_other}} </span>
66
+        </li>
63 67
       </ul>
64 68
 
65 69
 

+ 4 - 2
src/pages/main/today/dialysisMonitoring.vue View File

@@ -4,12 +4,12 @@
4 4
     <div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
5 5
       <table  class="table" style="">
6 6
         <tr>
7
-          <th  v-if="isShow('监测时间')" width="124px">时间</th>
7
+          <th v-if="isShow('监测时间')" width="124px">时间</th>
8 8
           <th v-if="isShow('体温')" width="80px">体温(℃)</th>
9 9
           <th v-if="isShow('脉搏')" width="80px">脉率(次/分)</th>
10 10
           <th v-if="isShow('呼吸频率')" width="110px">呼吸频率(次/分)</th>
11 11
           <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
12
-          <th  width="76px">静脉压/动脉压(mmHg)</th>
12
+          <th width="76px">静脉压/动脉压(mmHg)</th>
13 13
           <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
14 14
           <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
15 15
           <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
@@ -17,6 +17,7 @@
17 17
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
18 18
           <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
19 19
           <th v-if="isShow('置换量')"  width="92px">置换量(L)</th>
20
+          <th v-if="isShow('电导度')"  width="92px">电导度(mS/m)</th>
20 21
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
21 22
           <th v-if="isShow('处理')" width="92px">处理</th>
22 23
           <th v-if="isShow('结果')" width="92px">结果</th>
@@ -35,6 +36,7 @@
35 36
           <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
36 37
           <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
37 38
           <td v-if="isShow('置换量')">{{item.displacement_quantity?item.displacement_quantity:''}}</td>
39
+          <th v-if="isShow('电导度')" >{{item.conductivity?item.conductivity:''}}</th>
38 40
           <td v-if="isShow('病情变化')">{{item.symptom}}</td>
39 41
           <td v-if="isShow('处理')">{{item.dispose}}</td>
40 42
           <td v-if="isShow('结果')">{{item.result}}</td>

+ 16 - 13
src/pages/main/today/dialysisPrescription.vue View File

@@ -94,11 +94,7 @@
94 94
           <span class="content">{{dialysate_flow != '0'?dialysate_flow:""}}</span>
95 95
           <span class="unit">{{dialysate_flow != '0'?"ml/min":""}}</span>
96 96
         </li>
97
-        <li v-if="isShow('电导率')">
98
-          <label>电导率 : </label>
99
-          <span class="content">{{conductivity != '0'?conductivity:""}}</span>
100
-          <span class="unit">{{conductivity != '0'?"mS/cm":""}}</span>
101
-        </li>
97
+
102 98
       <!-- </ul>
103 99
       <ul> -->
104 100
         <li v-if="isShow('透析器/灌流器')">
@@ -137,6 +133,17 @@
137 133
           <span class="unit">{{ultrafiltration != '0'?"L":""}}</span>
138 134
 
139 135
         </li>
136
+        <li v-if="isShow('目标KT/V')">
137
+          <label>目标KT/V: </label>
138
+          <span class="content">{{target_ktv != '0'? target_ktv:''}}</span>
139
+        </li>
140
+
141
+        <li v-if="isShow('电导度')">
142
+          <label>电导度 : </label>
143
+          <span class="content">{{conductivity != '0'?conductivity:""}}</span>
144
+          <span class="unit">{{conductivity != '0'?"mS/m":""}}</span>
145
+        </li>
146
+
140 147
       </ul>
141 148
     </div>
142 149
     <div class="note">备注 : <span>{{note}}</span></div>
@@ -299,10 +306,7 @@ export default {
299 306
 
300 307
 
301 308
     },
302
-    // dry_weight: function() {
303
-    //   var v = this.getValueStr("dry_weight", "dry_weight")
304
-    //   return v.length == 0 ? "0" : v
305
-    // },
309
+
306 310
     conductivity: function() {
307 311
       var v = this.getValueStr("conductivity", "conductivity")
308 312
       return v.length == 0 ? "0" : v
@@ -358,14 +362,13 @@ export default {
358 362
         }
359 363
       }
360 364
       return displace_liqui_part + displace_liqui_value+"L"
361
-
362 365
     },ultrafiltration:function () {
363 366
       var v = this.getValueStr("ultrafiltration", "ultrafiltration")
364 367
       v = this.getFloat(v)
365 368
       return v.length == 0 ? "0" : v
366
-
367
-
368
-
369
+    },target_ktv:function () {
370
+      var v = this.getValueStr("target_ktv", "target_ktv")
371
+      return v.length == 0 ? "0" : v
369 372
     }
370 373
   },
371 374
   created() {

+ 3 - 2
src/pages/waitingRoom/components/dialysisContent.vue View File

@@ -68,7 +68,7 @@ export default {
68 68
           { value: 0, text: "全部分区" }
69 69
         ]
70 70
       },
71
-      
71
+
72 72
       selected_date: new Date(),
73 73
 
74 74
       dialysis_scheduals: [],
@@ -81,7 +81,7 @@ export default {
81 81
     filtedScheduals: function() {
82 82
       if (this.selected_zone[0].value == 0) {
83 83
         return this.dialysis_scheduals
84
-        
84
+
85 85
       } else {
86 86
         var zone_name = this.selected_zone[0].text
87 87
         for (let index = 0; index < this.dialysis_scheduals.length; index++) {
@@ -193,6 +193,7 @@ export default {
193 193
     @include display-flex;
194 194
     @include justify-content-center;
195 195
     @include text-align;
196
+    /*overflow-y:scroll;*/
196 197
     width: 60%;
197 198
     margin: 0 auto;
198 199
     .list {