Browse Source

添加透析耗材和生命之源配置

csx 5 years ago
parent
commit
43e501a779
32 changed files with 353 additions and 155 deletions
  1. 2 2
      build/cdn.json
  2. 21 2
      src/App.vue
  3. BIN
      src/assets/login/no_network.jpg
  4. BIN
      src/assets/login/no_network.png
  5. 1 1
      src/pages/advice/DialysisAdviceTable.vue
  6. 1 1
      src/pages/advice/NormalAdviceTable.vue
  7. 68 2
      src/pages/main/DialysisArea.vue
  8. 1 1
      src/pages/main/Print.vue
  9. 55 11
      src/pages/main/WaitingArea.vue
  10. 6 6
      src/pages/main/dialog/AcceptsDialog.vue
  11. 1 1
      src/pages/main/dialog/AssessmentDialog.vue
  12. 16 8
      src/pages/main/dialog/OrdersDialog.vue
  13. 5 4
      src/pages/main/dialog/PrescriptionDialog.vue
  14. 8 0
      src/pages/main/dialog/ThorougDialog.vue
  15. 14 9
      src/pages/main/dialog/modify_order/ModifyAdviceGroup.vue
  16. 41 24
      src/pages/main/dialog/modify_order/modify_order_form.vue
  17. 15 15
      src/pages/main/dialog/new_order/AddNewOrders.vue
  18. 47 27
      src/pages/main/dialog/new_order/order_form.vue
  19. 4 4
      src/pages/main/dialog/new_order/select_advice_template_dialog.vue
  20. 0 1
      src/pages/main/dialog/new_order/single_option_dialog.vue
  21. 1 2
      src/pages/main/dialog/subMenu/checkBoxSubMenu.vue
  22. 17 1
      src/pages/main/dialog/subMenu/multipleSubMenu.vue
  23. 12 11
      src/pages/main/dialysis/AdviceTable.vue
  24. 3 4
      src/pages/main/template/DialysisPrintOrderOne.vue
  25. 2 2
      src/pages/main/template/DialysisPrintOrderTwo.vue
  26. 3 6
      src/pages/main/today/acceptsAssessment.vue
  27. 2 2
      src/pages/main/today/assessmentBefore.vue
  28. 1 1
      src/pages/main/today/dialysisMonitoring.vue
  29. 1 1
      src/pages/main/today/statOrder.vue
  30. 1 1
      src/pages/waitingRoom/components/dialog/medicalOrder.vue
  31. 2 0
      src/store/index.js
  32. 2 5
      src/utils/request.js

+ 2 - 2
build/cdn.json View File

@@ -1,3 +1,3 @@
1 1
 {
2
-  "version": "1.0.16"
3
-}
2
+  "version": "1.0.20"
3
+}

+ 21 - 2
src/App.vue View File

@@ -1,13 +1,32 @@
1 1
 <template>
2 2
   <div id="app">
3 3
     <!-- <img src="./assets/logo.png"> -->
4
-    <router-view/>
4
+    <router-view  v-if="isRouterAlive" />
5 5
   </div>
6 6
 </template>
7 7
 
8 8
 <script>
9 9
 export default {
10
-  name: "App"
10
+  name: "App",
11
+  provide () {
12
+    return {
13
+      reload: this.reload
14
+    }
15
+  },
16
+  data () {
17
+    return {
18
+      isRouterAlive: true
19
+    }
20
+  },
21
+  methods: {
22
+    reload () {
23
+      this.isRouterAlive = false
24
+      this.$nextTick(function () {
25
+        this.isRouterAlive = true
26
+      })
27
+    }
28
+  }
29
+
11 30
 };
12 31
 </script>
13 32
 

BIN
src/assets/login/no_network.jpg View File


BIN
src/assets/login/no_network.png View File


+ 1 - 1
src/pages/advice/DialysisAdviceTable.vue View File

@@ -112,7 +112,7 @@
112 112
                 </td>
113 113
                 <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
114 114
                   <span>{{advice.advice_name }}</span>
115
-                  <span>{{advice.advice_desc}}</span>
115
+                  <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
116 116
                   <span
117 117
                     v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
118 118
                   <span v-if="advice.single_dose"> 单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>

+ 1 - 1
src/pages/advice/NormalAdviceTable.vue View File

@@ -91,7 +91,7 @@
91 91
               <td>{{ advice.parent_id == 0 ? parseTime(advice.start_time, "{m}-{d} {h}:{i}") : "" }}</td>
92 92
               <td>
93 93
                 <span >{{advice.advice_name }}</span>
94
-                <span >{{advice.advice_desc}}</span>
94
+                <span >{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
95 95
 
96 96
                 <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
97 97
                 <span v-if="advice.single_dose"> 单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>

+ 68 - 2
src/pages/main/DialysisArea.vue View File

@@ -1,5 +1,7 @@
1 1
 <template>
2 2
   <div>
3
+    <div v-loading="loading">
4
+
3 5
     <div class="screening">
4 6
       <ul>
5 7
         <el-popover
@@ -53,9 +55,18 @@
53 55
         <h2 class="title">{{item.zone_name}}</h2>
54 56
         <patient-box class="clearfix" :patients="item.scheduals"></patient-box>
55 57
       </div>
56
-      <div class="NoData" v-show="filtedScheduals.length == 0">
58
+      <div class="NoData" v-if="filtedScheduals.length == 0&&networkStates">
57 59
         <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt>
58 60
       </div>
61
+      <div class="NoData" v-if="!networkStates" style="display: block;text-align: center">
62
+        <p  style="margin-top: 100px;font-size: 18px">网络异常,请点击重新加载</p>
63
+
64
+
65
+        <!--<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/no_network.jpg" alt="">-->
66
+        <van-button  slot="button" size="normal" type="info" style="display:block;margin:0 auto"  @click="reloads()">重新加载
67
+        </van-button>
68
+      </div>
69
+
59 70
     </div>
60 71
     <mt-datetime-picker
61 72
       v-model="selected_date"
@@ -67,6 +78,8 @@
67 78
       @confirm="handleScheduleDateChange"
68 79
     ></mt-datetime-picker>
69 80
   </div>
81
+  </div>
82
+
70 83
 </template>
71 84
 
72 85
 <script>
@@ -75,6 +88,7 @@ import { Popover } from "vux";
75 88
 import { Datetime } from "vux";
76 89
 import { parseTime } from "@/utils/index";
77 90
 import { getDialysisScheduals } from "@/api/dialysis";
91
+import {Toast} from 'vant'
78 92
 
79 93
 export default {
80 94
   name: "DialysisArea",
@@ -83,8 +97,12 @@ export default {
83 97
     Popover,
84 98
     Datetime
85 99
   },
100
+  inject: ['reload'],
86 101
   data() {
87 102
     return {
103
+      loading:false,
104
+
105
+      networkStates:true,
88 106
       timer:null,
89 107
       selected_date: this.$store.getters.app.dialysis_area.schedule_date, //new Date(),
90 108
       schedual_types: [
@@ -203,6 +221,9 @@ export default {
203 221
     this.timer = null;
204 222
   },
205 223
   methods: {
224
+    reloads:function(){
225
+      this.reload()
226
+    },
206 227
     handletimeType: function(index) {
207 228
       this.sch_type_options_visible = false;
208 229
       this.schedual_type_selected = index;
@@ -237,11 +258,18 @@ export default {
237 258
     },
238 259
 
239 260
     requestDialysisScheduals() {
261
+      // this.$toast.loading({forbidClick: true, duration: 0})
262
+      this.loading = true
240 263
       var type = 0;
241 264
       getDialysisScheduals({ type: type, date: this.selected_date_str })
242 265
         .then(rs => {
266
+          this.networkStates = true
243 267
           var resp = rs.data;
244 268
           if (resp.state == 1) {
269
+            this.loading = false
270
+
271
+
272
+
245 273
             // console.log(resp.data)
246 274
             var scheduals = resp.data.scheduals;
247 275
             var zoneMap = {};
@@ -286,12 +314,38 @@ export default {
286 314
             }
287 315
             this.dialysis_scheduals = dialysis_scheduals;
288 316
           } else {
317
+            this.loading = false
318
+
319
+
289 320
             this.$toast({
290 321
               message: resp.msg
291 322
             });
292 323
           }
293 324
         })
294
-        .catch(v => {});
325
+        .catch(error => {
326
+          this.loading = false
327
+
328
+
329
+
330
+          //超时之后在这里捕抓错误信息.
331
+          if (error.response) {
332
+            this.networkStates = false
333
+
334
+
335
+            console.log('error.response')
336
+            console.log(error.response);
337
+          } else if (error.request) {
338
+            this.networkStates = false
339
+
340
+            // if(error.request.readyState == 4 && error.request.status == 0){
341
+            //   //我在这里重新请求
342
+            //   this.networkStates = false
343
+            // }
344
+          } else {
345
+
346
+            this.networkStates = false
347
+          }
348
+        });
295 349
     },
296 350
     openPicker() {
297 351
       this.$refs.picker.open();
@@ -341,6 +395,18 @@ export default {
341 395
   }
342 396
 }
343 397
 
398
+  .shadow{
399
+  width:100%;
400
+  height:100%;
401
+  position:absolute;
402
+  left:0;
403
+  top:0;
404
+  z-index:998;
405
+  background-color:#000;
406
+  opacity:0.6;
407
+  display:none;
408
+  }
409
+
344 410
 </style>
345 411
 
346 412
 <style>

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

@@ -1585,7 +1585,7 @@
1585 1585
               <td class="advice-name">
1586 1586
                 <span v-if="advice[0].parent_id>0">└</span>
1587 1587
                 <span>{{advice[0].advice_name }}</span>
1588
-                <span>{{advice[0].advice_desc}}</span>
1588
+                <span>{{advice[0].advice_desc}} {{advice[0].drug_spec_unit}}</span>
1589 1589
                 <span v-if="advice[0].drug_spec">{{advice[0].drug_spec}}{{advice[0].drug_spec_unit}}</span>
1590 1590
                 <span v-if="advice[0].prescribing_number">* {{advice[0].prescribing_number}}{{advice[0].prescribing_number_unit}}</span>
1591 1591
                 <span v-if="advice[0].single_dose">单次用量 {{advice[0].single_dose}}{{advice[0].single_dose_unit}}</span>

+ 55 - 11
src/pages/main/WaitingArea.vue View File

@@ -1,8 +1,10 @@
1 1
 <template>
2 2
   <div>
3
+    <div v-loading="loading">
4
+
3 5
     <div class="screening">
6
+      <!--<div @click="reloads()">刷新</div>-->
4 7
       <ul>
5
-
6 8
         <li v-for="(item,i) in menuList" :class="select_index == i ? 'active' : ''" @click="menuTabClick(i)"
7 9
             :key="i">{{ item.label + (item.count > 0 ? '(' + item.count + ')' : '') }}
8 10
         </li>
@@ -48,11 +50,20 @@
48 50
         <h2 class="title">{{item.zone_name}}</h2>
49 51
         <patient-box class="clearfix" :patients="item.scheduals"></patient-box>
50 52
       </div>
51
-      <div class="NoData" v-show="filtedScheduals.length == 0"><img style="margin-top: 50px; margin-bottom: 50px"
53
+      <div class="NoData" v-if="filtedScheduals.length == 0&&networkStates"><img style="margin-top: 50px; margin-bottom: 50px"
52 54
                                                                     src="@/assets/login/data.jpg" alt=""></div>
53 55
 
56
+      <div class="NoData" v-if="!networkStates" style="display: block;text-align: center;">
57
+        <!--<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/no_network.jpg" alt="">-->
58
+        <p  style="margin-top: 100px;font-size: 18px">网络异常,请点击重新加载</p>
59
+        <van-button  slot="button" size="normal" type="info" style="display:block;margin:0 auto"  @click="reloads()">重新加载
60
+        </van-button>
61
+      </div>
62
+
54 63
     </div>
55 64
   </div>
65
+  </div>
66
+
56 67
 </template>
57 68
 
58 69
 <script>
@@ -60,6 +71,8 @@
60 71
   import {getWaitingScheduals} from '@/api/dialysis'
61 72
   import {parseTime} from '@/utils'
62 73
   import {Popover} from 'vux'
74
+  import {Toast} from 'vant'
75
+
63 76
   import {
64 77
     getSelectedAreaDataConfigList,
65 78
     getSelectedTimesDataConfigList,
@@ -75,8 +88,10 @@
75 88
       PatientBox,
76 89
       Popover
77 90
     },
91
+    inject: ['reload'],
78 92
     data () {
79 93
       return {
94
+        loading:false,
80 95
         menuList: [
81 96
           {value: '1', label: '全部', count: 0},
82 97
           {value: '3', label: '待开处方', count: 0},
@@ -86,7 +101,7 @@
86 101
         select_index: 0,
87 102
         zone_selected: 0,
88 103
         time_selected: 0,
89
-
104
+        networkStates:true,
90 105
         scheduals: [],
91 106
 
92 107
         zone_options: [{value: 0, text: '全部分区'}],
@@ -251,16 +266,13 @@
251 266
       }
252 267
       if(type != null){
253 268
         this.select_index = parseInt(type)
254
-
255 269
       }
256
-
257 270
       this.requestScheduals()
258 271
     },
259 272
     mounted () {
260 273
       this.timer = window.setInterval(() => {
261 274
         setTimeout(this.requestScheduals(), 0)
262 275
       }, 30000)
263
-
264 276
     },
265 277
     beforeDestroy () {
266 278
       clearInterval(this.timer)
@@ -270,6 +282,10 @@
270 282
       // })
271 283
     },
272 284
     methods: {
285
+      reloads:function(){
286
+        this.reload()
287
+
288
+      },
273 289
       handleAllChange: function (tabIndex) {
274 290
         this.select_index = tabIndex
275 291
         this.zone_selected = 0
@@ -283,8 +299,6 @@
283 299
         setSelectedAreaDataConfigList(this.zone_selected)
284 300
         setSelectedTimesDataConfigList(this.time_selected)
285 301
         setWaitTypeSelectedConfig(tabIndex)
286
-
287
-
288 302
       },
289 303
       handleZoneChange: function (index) {
290 304
         this.zone_options_visible = false
@@ -299,12 +313,13 @@
299 313
       },
300 314
 
301 315
       requestScheduals () {
302
-
316
+        this.loading = true
303 317
         var date = parseTime(Date.parse(new Date()), '{y}-{m}-{d}')
304 318
         getWaitingScheduals({date: date}).then(rs => {
305 319
           var resp = rs.data
306
-          // console.log(resp);
307 320
           if (resp.state == 1) {
321
+            this.loading = false
322
+
308 323
             var scheduals = resp.data.scheduals
309 324
             var totalCount = scheduals.length
310 325
             var prescription_count = 0
@@ -325,11 +340,29 @@
325 340
             this.zone_options = this.makeZones(scheduals)
326 341
             this.zone_scheduals = this.processScheduals(scheduals)
327 342
           } else {
343
+            this.loading = false
344
+
328 345
             this.$toast({
329 346
               message: resp.msg
330 347
             })
331 348
           }
332
-        })
349
+        }).catch(error => {
350
+          this.loading = false
351
+
352
+          //超时之后在这里捕抓错误信息.
353
+          if (error.response) {
354
+            this.networkStates = false
355
+
356
+          } else if (error.request) {
357
+            this.networkStates = false
358
+            // if(error.request.readyState == 4 && error.request.status == 0){
359
+            //   //我在这里重新请求
360
+            //   this.networkStates = false
361
+            // }
362
+          } else {
363
+            this.networkStates = false
364
+          }
365
+        });
333 366
       },
334 367
       makeZones: function (scheduals) {
335 368
         var zoneMap = {}
@@ -446,5 +479,16 @@
446 479
   display: inline-block;
447 480
   }
448 481
   }
482
+  .shadow{
483
+  width:100%;
484
+  height:100%;
485
+  position:absolute;
486
+  left:0;
487
+  top:0;
488
+  z-index:998;
489
+  background-color:#000;
490
+  opacity:0.6;
491
+  display:none;
492
+  }
449 493
 </style>
450 494
 

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

@@ -65,12 +65,12 @@
65 65
 
66 66
           </el-form-item>
67 67
 
68
-          <el-form-item label="跌倒风险预防措施: " v-if="isShow('跌倒风险预防措施')">
69
-            <el-radio v-model="receiveTreatmentAsses.precaution" label="1">镇定剂</el-radio>
70
-            <el-radio v-model="receiveTreatmentAsses.precaution" label="2">约束带</el-radio>
71
-            <el-radio v-model="receiveTreatmentAsses.precaution" label="3">床栏</el-radio>
72
-            <el-radio v-model="receiveTreatmentAsses.precaution" label="4">加强宣教</el-radio>
73
-          </el-form-item>
68
+          <el-form-item label-width="155px" label="跌倒风险预防措施: " v-if="isShow('跌倒风险预防措施')">
69
+          <el-radio v-model="receiveTreatmentAsses.precaution" label="1">镇定剂</el-radio>
70
+          <el-radio v-model="receiveTreatmentAsses.precaution" label="2">约束带</el-radio>
71
+          <el-radio v-model="receiveTreatmentAsses.precaution" label="3">床栏</el-radio>
72
+          <el-radio v-model="receiveTreatmentAsses.precaution" label="4">加强宣教</el-radio>
73
+        </el-form-item>
74 74
           <el-form-item label-width="100dp" label="其他跌倒风险预防措施 : "
75 75
                         v-if="isShow('其他跌倒风险预防措施')">
76 76
             <el-input v-model="receiveTreatmentAsses.precaution_other"></el-input>

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

@@ -270,7 +270,7 @@
270 270
         <div class="item" ref="skin_other" v-if="isShow('其他感染情况')">
271 271
           <h2 class="name">其他感染情况</h2>
272 272
           <div class="content">
273
-            <input @focus="inputFocus" v-model="formValue.skin_other"/>
273
+            <input @focus="inputFocus" v-model="formValue.infect_other"/>
274 274
           </div>
275 275
         </div>
276 276
 

+ 16 - 8
src/pages/main/dialog/OrdersDialog.vue View File

@@ -78,7 +78,7 @@
78 78
                 >
79 79
                   <div class="txt">
80 80
                     <span>{{advice.advice_name }}</span>
81
-                    <span>{{ advice.advice_desc }}</span>
81
+                    <span>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</span>
82 82
                     <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
83 83
                     <span v-if="advice.single_dose"
84 84
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
@@ -118,6 +118,7 @@
118 118
       v-show="index==1&&isShowDialog"
119 119
       @back-action="index = 0"
120 120
       :patient_id="patient.id"
121
+      :drug_spec_unit_options="unitsOption"
121 122
       :delivery_way_options="deliveryWayOptions"
122 123
       :execution_frequency_options="executionFrequencyOptions"
123 124
       :single_dose_unit_options="unitsOption"
@@ -132,12 +133,14 @@
132 133
       @did-create-subdrug="didAddSubdrug"
133 134
       :single_dose_unit_options="unitsOption"
134 135
       :prescribing_number_unit_options="unitsOption"
136
+      :drug_spec_unit_options="unitsOption"
135 137
     ></advice-form>
136 138
 
137 139
     <modify-advice-form
138 140
       ref="modify_advice_form"
139 141
       @back="index = 0"
140 142
       @did-modify="didModifyAdvice"
143
+      :drug_spec_unit_options="unitsOption"
141 144
       :delivery_way_options="deliveryWayOptions"
142 145
       :execution_frequency_options="executionFrequencyOptions"
143 146
       :single_dose_unit_options="unitsOption"
@@ -151,6 +154,7 @@
151 154
       :delivery_way_options="deliveryWayOptions"
152 155
       :execution_frequency_options="executionFrequencyOptions"
153 156
       :single_dose_unit_options="unitsOption"
157
+      :drug_spec_unit_options="unitsOption"
154 158
       :prescribing_number_unit_options="unitsOption"
155 159
       :advice_templates="adviceTemplates"
156 160
       @did-create-advices="didCreateAdvices"
@@ -337,7 +341,6 @@
337 341
         if (advices.length == 0) {
338 342
           return
339 343
         }
340
-
341 344
         for (let i = 0; i < advices.length; i++) {
342 345
           advices[i]['is_selected'] = 0
343 346
         }
@@ -368,6 +371,8 @@
368 371
           this.advice_groups.splice(insertIndex, 0, new_group)
369 372
         }
370 373
         this.index = 0
374
+        this.advice_groups.sort((a, b) => a.start_time - b.start_time)
375
+
371 376
       },
372 377
       didModifyAdvice: function (advice) {
373 378
         Toast.loading({forbidClick: true, duration: 0})
@@ -377,7 +382,7 @@
377 382
           remark: advice.remark,
378 383
           start_time: advice.start_time,
379 384
           // drug_spec: String(advice.drug_spec),
380
-          // drug_spec_unit: advice.drug_spec_unit,
385
+          drug_spec_unit: advice.drug_spec_unit,
381 386
           delivery_way: advice.delivery_way,
382 387
           execution_frequency: advice.execution_frequency,
383 388
           single_dose: String(advice.single_dose),
@@ -398,7 +403,7 @@
398 403
                     advice.remark = resp_advice.remark;
399 404
                     advice.start_time = resp_advice.start_time;
400 405
                     // advice.drug_spec = resp_advice.drug_spec;
401
-                    // (advice.drug_spec_unit = resp_advice.drug_spec_unit),
406
+                    (advice.drug_spec_unit = resp_advice.drug_spec_unit),
402 407
                     (advice.delivery_way = resp_advice.delivery_way),
403 408
                       (advice.execution_frequency =
404 409
                         resp_advice.execution_frequency),
@@ -435,6 +440,9 @@
435 440
                   advices.is_selected = 0
436 441
                 }
437 442
               }
443
+              console.log(this.advice_groups)
444
+
445
+              this.advice_groups.sort((a, b) => a.advices[0].start_time - b.advices[0].start_time)
438 446
 
439 447
               this.$refs.modify_advice_form.dismiss()
440 448
               Toast.clear()
@@ -487,7 +495,7 @@
487 495
           advice_name: subdrug.title,
488 496
           advice_desc: subdrug.advice_desc,
489 497
           // drug_spec: String(subdrug.drug_spec),
490
-          // drug_spec_unit: subdrug.drug_spec_unit,
498
+          drug_spec_unit: subdrug.drug_spec_unit,
491 499
           single_dose: String(subdrug.single_dose),
492 500
           single_dose_unit: subdrug.single_dose_unit,
493 501
           prescribing_number: String(subdrug.prescribing_number),
@@ -1132,7 +1140,7 @@
1132 1140
             advice_desc: advice.advice_desc,
1133 1141
             remark: advice.remark,
1134 1142
             // drug_spec: advice.drug_spec,
1135
-            // drug_spec_unit: advice.drug_spec_unit,
1143
+            drug_spec_unit: advice.drug_spec_unit,
1136 1144
             delivery_way: advice.delivery_way,
1137 1145
             execution_frequency: advice.execution_frequency,
1138 1146
             single_dose: advice.single_dose,
@@ -1160,7 +1168,7 @@
1160 1168
             remark: advice.remark,
1161 1169
             start_time: advice.start_time,
1162 1170
             // drug_spec: advice.drug_spec,
1163
-            // drug_spec_unit: advice.drug_spec_unit,
1171
+            drug_spec_unit: advice.drug_spec_unit,
1164 1172
             delivery_way: advice.delivery_way,
1165 1173
             execution_frequency: advice.execution_frequency,
1166 1174
             single_dose: advice.single_dose,
@@ -1180,7 +1188,7 @@
1180 1188
               remark: advice.remark,
1181 1189
 
1182 1190
               // drug_spec: advice.drug_spec,
1183
-              // drug_spec_unit: advice.drug_spec_unit,
1191
+              drug_spec_unit: advice.drug_spec_unit,
1184 1192
               delivery_way: advice.delivery_way,
1185 1193
               execution_frequency: advice.execution_frequency,
1186 1194
               single_dose: advice.single_dose,

+ 5 - 4
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -165,7 +165,7 @@
165 165
             <input type="tel" @focus="inputFocus" id="dtl" v-model="dialysisPrescription.conductivity"/>
166 166
           </div>
167 167
         </div>
168
-        <div class="item" v-if="isShow('透析器/灌流器')">
168
+        <div class="item" v-if="isShow('透析器/灌流器')&&config.is_open != 1">
169 169
           <label class="name" for="dtl">透析器/灌流器</label>
170 170
           <div class="content">
171 171
 
@@ -248,8 +248,7 @@
248 248
         <div @click="dialysisGoodsClick()" class="item" ref="consumable_material" v-if="config.is_open == 1">
249 249
           <label class="name" for="knj">透析耗材</label>
250 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>-->
251
+            <span class="text" id="knjaa"></span>
253 252
             <span class="iconfont">&#xe6f9;</span>
254 253
           </div>
255 254
         </div>
@@ -305,6 +304,9 @@
305 304
 
306 305
 
307 306
 
307
+
308
+
309
+
308 310
   </div>
309 311
 </template>
310 312
 
@@ -965,7 +967,6 @@
965 967
       }
966 968
     },
967 969
     created() {
968
-
969 970
       if (this.$store.getters.user.user.user_type == 2) {
970 971
         this.isShowSign = true;
971 972
 

+ 8 - 0
src/pages/main/dialog/ThorougDialog.vue View File

@@ -998,6 +998,10 @@
998 998
             }else if(val.selectId == 2){
999 999
               this.formValue.puncture_point_oozing_blood = val.selectId
1000 1000
               this.puncture_point_oozing_blood_state = false
1001
+            }else{
1002
+
1003
+              this.formValue.puncture_point_oozing_blood =0
1004
+
1001 1005
             }
1002 1006
 
1003 1007
             break;
@@ -1008,6 +1012,8 @@
1008 1012
             }else if(val.selectId == 2){
1009 1013
               this.formValue.puncture_point_haematoma = val.selectId
1010 1014
               this.puncture_point_haematoma_state = false
1015
+            }else{
1016
+              this.formValue.puncture_point_haematoma = 0
1011 1017
             }
1012 1018
             break;
1013 1019
           case 22:
@@ -1017,6 +1023,8 @@
1017 1023
             }else if(val.selectId == 2){
1018 1024
               this.formValue.is_eat = val.selectId
1019 1025
               this.eat_state = false
1026
+            }else{
1027
+              this.formValue.is_eat = 0
1020 1028
             }
1021 1029
             break;
1022 1030
         }

+ 14 - 9
src/pages/main/dialog/modify_order/ModifyAdviceGroup.vue View File

@@ -44,7 +44,7 @@
44 44
             </tr>
45 45
             <tr v-for="(advice, index) in advices" :key="index" :class="{ 'row-class-active': index == current_advice_index }" @click="selectAdviceAction(index, advice)">
46 46
               <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{ advice.advice_name }}</td>
47
-              <td>{{ advice.advice_desc }}</td>
47
+              <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
48 48
               <td>{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
49 49
               <td>{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
50 50
               <td>{{ advice.parent_id == 0 ? advice.delivery_way : "" }}</td>
@@ -63,6 +63,7 @@
63 63
       :execution_frequency_options="execution_frequency_options"
64 64
       :single_dose_unit_options="single_dose_unit_options"
65 65
       :prescribing_number_unit_options="prescribing_number_unit_options"
66
+      :drug_spec_unit_options="drug_spec_unit_options"
66 67
     ></modify-advice-form>
67 68
 
68 69
     <mt-datetime-picker
@@ -77,6 +78,7 @@
77 78
       @back-action="sub_dialog_key = 0"
78 79
       :patient_id="patient_id"
79 80
       :group_no="group_no"
81
+      :drug_spec_unit_options="drug_spec_unit_options"
80 82
       :delivery_way_options="delivery_way_options"
81 83
       :execution_frequency_options="execution_frequency_options"
82 84
       :single_dose_unit_options="single_dose_unit_options"
@@ -114,12 +116,12 @@ export default {
114 116
         return [];
115 117
       }
116 118
     },
117
-    // drug_spec_unit_options: {
118
-    //   type: Array,
119
-    //   default: function() {
120
-    //     return [];
121
-    //   }
122
-    // },
119
+    drug_spec_unit_options: {
120
+      type: Array,
121
+      default: function() {
122
+        return [];
123
+      }
124
+    },
123 125
     delivery_way_options: {
124 126
       type: Array,
125 127
       default: function() {
@@ -224,7 +226,7 @@ export default {
224 226
           title: this.current_advice.advice_name,
225 227
           advice_desc: this.current_advice.advice_desc,
226 228
           // drug_spec: this.current_advice.drug_spec,
227
-          // drug_spec_unit: this.current_advice.drug_spec_unit,
229
+          drug_spec_unit: this.current_advice.drug_spec_unit,
228 230
           delivery_way: this.current_advice.delivery_way,
229 231
           execution_frequency: this.current_advice.execution_frequency,
230 232
           single_dose: this.current_advice.single_dose,
@@ -267,12 +269,14 @@ export default {
267 269
         advice_name: advice.title,
268 270
         advice_desc: advice.advice_desc,
269 271
         remark:advice.remark,
272
+        drug_spec_unit:advice.drug_spec_unit,
270 273
         delivery_way: advice.delivery_way,
271 274
         execution_frequency: advice.execution_frequency,
272 275
         single_dose: String(advice.single_dose),
273 276
         single_dose_unit: advice.single_dose_unit,
274 277
         prescribing_number: String(advice.prescribing_number),
275
-        prescribing_number_unit: advice.prescribing_number_unit
278
+        prescribing_number_unit: advice.prescribing_number_unit,
279
+        drug_spec_unit:advice.drug_spec_unit
276 280
       }).then(rs => {
277 281
         if (rs.data.state == 1) {
278 282
           var resp_advice = rs.data.data.advice
@@ -280,6 +284,7 @@ export default {
280 284
           this.current_advice
281 285
           this.current_advice.advice_name = resp_advice.advice_name
282 286
           this.current_advice.advice_desc = resp_advice.advice_desc
287
+          this.current_advice.drug_spec_unit = resp_advice.drug_spec_unit
283 288
           this.current_advice.remark = resp_advice.remark
284 289
           this.current_advice.delivery_way = resp_advice.delivery_way,
285 290
           this.current_advice.execution_frequency = resp_advice.execution_frequency,

+ 41 - 24
src/pages/main/dialog/modify_order/modify_order_form.vue View File

@@ -22,8 +22,8 @@
22 22
             </div>
23 23
             <div class="cell">
24 24
               <label>药品规格</label>
25
-              <input class="inputBox" style="width:100%" v-model="order.advice_desc">
26
-              <!-- <input type="number" onclick="this.select()" class="inputBox" style="width:60%" v-model="order.drug_spec">
25
+              <input class="inputBox" style="width:62.5%" v-model="order.advice_desc">
26
+              <!--<input type="number" onclick="this.select()" class="inputBox" style="width:60%" v-model="order.drug_spec">-->
27 27
               <input
28 28
                 type="text"
29 29
                 placeholder="单位"
@@ -32,7 +32,7 @@
32 32
                 style="width:35%"
33 33
                 v-model="order.drug_spec_unit"
34 34
                 @focus="selectDrugSpecUnitAction"
35
-              > -->
35
+              >
36 36
             </div>
37 37
 
38 38
             <div class="cell">
@@ -114,15 +114,15 @@
114 114
       option_label_key="name"
115 115
     ></single-option-dialog>
116 116
 
117
-    <!-- <single-option-dialog
117
+    <single-option-dialog
118 118
       :visibility="sub_dialog_key == 5"
119
-      title="药规格"
119
+      title="药规格"
120 120
       @did-selected="didSelectDrugSpecUnit"
121 121
       @back="didCloseSingleOptionDialog"
122 122
       :options="drug_spec_unit_options"
123 123
       option_key="id"
124 124
       option_label_key="name"
125
-    ></single-option-dialog> -->
125
+    ></single-option-dialog>
126 126
 
127 127
     <single-option-dialog
128 128
       :visibility="sub_dialog_key == 2"
@@ -174,12 +174,12 @@ export default {
174 174
     SingleOptionDialog
175 175
   },
176 176
   props: {
177
-    // drug_spec_unit_options: {
178
-    //   type: Array,
179
-    //   default: function() {
180
-    //     return [];
181
-    //   }
182
-    // },
177
+    drug_spec_unit_options: {
178
+      type: Array,
179
+      default: function() {
180
+        return [];
181
+      }
182
+    },
183 183
     delivery_way_options: {
184 184
       type: Array,
185 185
       default: function() {
@@ -220,7 +220,7 @@ export default {
220 220
         title: "",
221 221
         advice_desc: "",
222 222
         // drug_spec: "",
223
-        // drug_spec_unit: "",
223
+        drug_spec_unit: "",
224 224
         remark:"",
225 225
         delivery_way: "",
226 226
         execution_frequency: "",
@@ -262,7 +262,7 @@ export default {
262 262
       this.start_time_str = parseTime(order.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
263 263
 
264 264
       // this.order.drug_spec = order.drug_spec;
265
-      // this.order.drug_spec_unit = order.drug_spec_unit;
265
+      this.order.drug_spec_unit = order.drug_spec_unit;
266 266
       this.order.delivery_way =
267 267
         order.delivery_way == undefined || order.delivery_way == null
268 268
           ? ""
@@ -271,7 +271,7 @@ export default {
271 271
         order.execution_frequency == undefined ||
272 272
         order.execution_frequency == null
273 273
           ? ""
274
-          : order.execution_frequency;
274
+          :                                                                                                                                                                order.execution_frequency;
275 275
       this.order.single_dose = order.single_dose;
276 276
       this.order.single_dose_unit = order.single_dose_unit;
277 277
       this.order.prescribing_number = order.prescribing_number;
@@ -305,7 +305,8 @@ export default {
305 305
           single_dose_unit: this.order.single_dose_unit,
306 306
           prescribing_number: this.order.prescribing_number,
307 307
           prescribing_number_unit: this.order.prescribing_number_unit,
308
-          start_time:this.start_time_str
308
+          start_time:this.start_time_str,
309
+          drug_spec_unit:this.order.drug_spec_unit,
309 310
 
310 311
         });
311 312
       }
@@ -315,24 +316,40 @@ export default {
315 316
       this.sub_dialog_key = 1;
316 317
     },
317 318
     didSelectSingleDoseUnit: function(index) {
319
+      if (index == -1){
320
+        this.order.single_dose_unit = '';
321
+      }else{
322
+        this.order.single_dose_unit = this.single_dose_unit_options[index].name;
323
+
324
+      }
325
+
318 326
       this.didCloseSingleOptionDialog();
319
-      this.order.single_dose_unit = this.single_dose_unit_options[index].name;
320 327
     },
321 328
     selectDrugSpecUnitAction: function() {
322 329
       this.sub_dialog_key = 5;
323 330
     },
324
-    // didSelectDrugSpecUnit: function(index) {
325
-    //   this.didCloseSingleOptionDialog();
326
-    //   this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
327
-    // },
331
+    didSelectDrugSpecUnit: function(index) {
332
+
333
+      if (index == -1){
334
+        this.order.drug_spec_unit = '';
335
+      }else{
336
+        this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
337
+      }
338
+
339
+      this.didCloseSingleOptionDialog();
340
+    },
328 341
     selectPrescribingNumUnitAction: function() {
329 342
       this.sub_dialog_key = 2;
330 343
     },
331 344
     didSelectPrescribingNumUnit: function(index) {
345
+      if (index == -1){
346
+        this.order.prescribing_number_unit = '';
347
+      }else{
348
+        this.order.prescribing_number_unit = this.prescribing_number_unit_options[index].name;
349
+      }
350
+
332 351
       this.didCloseSingleOptionDialog();
333
-      this.order.prescribing_number_unit = this.prescribing_number_unit_options[
334
-        index
335
-      ].name;
352
+
336 353
     },
337 354
     selectDeliveryWayAction: function() {
338 355
       this.sub_dialog_key = 3;

+ 15 - 15
src/pages/main/dialog/new_order/AddNewOrders.vue View File

@@ -52,7 +52,7 @@
52 52
                 <td
53 53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
54 54
                 >{{ advice.title }}</td>
55
-                <td>{{ advice.advice_desc }}</td>
55
+                <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
56 56
                 <td v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
57 57
                 <td v-else></td>
58 58
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
@@ -69,7 +69,7 @@
69 69
                 <td
70 70
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
71 71
                 >{{ subdrug.title }}</td>
72
-                <td>{{ subdrug.advice_desc }}</td>
72
+                <td>{{ subdrug.advice_desc }} {{subdrug.drug_spec_unit}}</td>
73 73
                 <td><span v-if="subdrug.prescribing_number">{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span></td>
74 74
                 <td><span v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span></td>
75 75
                 <!--<td v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</td>-->
@@ -104,6 +104,7 @@
104 104
       @back="show_dialog_key = 0"
105 105
       @did-create-new="didAddNewOrder"
106 106
       @did-modify="didModifyOrder"
107
+      :drug_spec_unit_options="drug_spec_unit_options"
107 108
       :delivery_way_options="delivery_way_options"
108 109
       :execution_frequency_options="execution_frequency_options"
109 110
       :single_dose_unit_options="single_dose_unit_options"
@@ -151,12 +152,12 @@ export default {
151 152
         return [];
152 153
       }
153 154
     },
154
-    // drug_spec_unit_options: {
155
-    //   type: Array,
156
-    //   default: function () {
157
-    //     return [];
158
-    //   }
159
-    // },
155
+    drug_spec_unit_options: {
156
+      type: Array,
157
+      default: function () {
158
+        return [];
159
+      }
160
+    },
160 161
     delivery_way_options: {
161 162
       type: Array,
162 163
       default: function() {
@@ -276,7 +277,7 @@ export default {
276 277
           advice_name: advice.title,
277 278
           advice_desc: advice.advice_desc,
278 279
           // drug_spec: String(advice.drug_spec),
279
-          // drug_spec_unit: advice.drug_spec_unit,
280
+          drug_spec_unit: advice.drug_spec_unit,
280 281
           single_dose: String(advice.single_dose),
281 282
           single_dose_unit: advice.single_dose_unit,
282 283
           prescribing_number: String(advice.prescribing_number),
@@ -292,7 +293,7 @@ export default {
292 293
             advice_name: subdrug.title,
293 294
             advice_desc: subdrug.advice_desc,
294 295
             // drug_spec: String(subdrug.drug_spec),
295
-            // drug_spec_unit: subdrug.drug_spec_unit,
296
+            drug_spec_unit: subdrug.drug_spec_unit,
296 297
             single_dose: String(subdrug.single_dose),
297 298
             single_dose_unit: subdrug.single_dose_unit,
298 299
             prescribing_number: String(subdrug.prescribing_number),
@@ -344,7 +345,7 @@ export default {
344 345
             title: adv.advice_name,
345 346
             advice_desc: adv.advice_desc,
346 347
             // drug_spec: adv.drug_spec,
347
-            // drug_spec_unit: adv.drug_spec_unit,
348
+            drug_spec_unit: adv.drug_spec_unit,
348 349
             delivery_way: adv.delivery_way,
349 350
             execution_frequency: adv.execution_frequency,
350 351
             single_dose: adv.single_dose,
@@ -366,7 +367,7 @@ export default {
366 367
                 title: resp_adv.advice_name,
367 368
                 advice_desc: resp_adv.advice_desc,
368 369
                 // drug_spec: resp_adv.drug_spec,
369
-                // drug_spec_unit: resp_adv.drug_spec_unit,
370
+                drug_spec_unit: resp_adv.drug_spec_unit,
370 371
                 delivery_way: resp_adv.delivery_way,
371 372
                 execution_frequency: resp_adv.execution_frequency,
372 373
                 single_dose: resp_adv.single_dose,
@@ -446,7 +447,6 @@ export default {
446 447
       this.show_dialog_key = 0;
447 448
       order.id = 0;
448 449
       order.subdrugs = [];
449
-      console.log(order)
450 450
       this.advices.push(order);
451 451
     },
452 452
     didModifyOrder: function(order) {
@@ -458,7 +458,7 @@ export default {
458 458
           advice.title = order.title;
459 459
           advice.advice_desc = order.advice_desc;
460 460
           // advice.drug_spec = order.drug_spec;
461
-          // advice.drug_spec_unit = order.drug_spec_unit;
461
+          advice.drug_spec_unit = order.drug_spec_unit;
462 462
           advice.delivery_way = order.delivery_way;
463 463
           advice.execution_frequency = order.execution_frequency;
464 464
           advice.single_dose = order.single_dose;
@@ -472,7 +472,7 @@ export default {
472 472
           subdrug.title = order.title;
473 473
           subdrug.advice_desc = order.advice_desc;
474 474
           // subdrug.drug_spec = order.drug_spec;
475
-          // subdrug.drug_spec_unit = order.drug_spec_unit;
475
+          subdrug.drug_spec_unit = order.drug_spec_unit;
476 476
           subdrug.single_dose = order.single_dose;
477 477
           subdrug.single_dose_unit = order.single_dose_unit;
478 478
           subdrug.prescribing_number = order.prescribing_number;

+ 47 - 27
src/pages/main/dialog/new_order/order_form.vue View File

@@ -18,7 +18,9 @@
18 18
             </div>
19 19
             <div class="cell">
20 20
               <label>药品规格</label>
21
-              <!-- <input type="number" class="inputBox" style="width:62.5%" v-model="order.drug_spec">
21
+              <input class="inputBox" style="width:62.5%" v-model="order.advice_desc">
22
+
23
+              <!--<input type="number" class="inputBox" style="width:62.5%" v-model="order.drug_spec">-->
22 24
               <input
23 25
                 type="text"
24 26
                 placeholder="单位"
@@ -27,8 +29,7 @@
27 29
                 style="width:35%"
28 30
                 v-model="order.drug_spec_unit"
29 31
                 @focus="selectDrugSpecUnitAction"
30
-              > -->
31
-              <input class="inputBox" style="width:100%" v-model="order.advice_desc">
32
+              >
32 33
             </div>
33 34
 
34 35
             <div class="cell">
@@ -111,15 +112,15 @@
111 112
       option_label_key="name"
112 113
     ></single-option-dialog>
113 114
 
114
-    <!-- <single-option-dialog
115
+    <single-option-dialog
115 116
       :visibility="sub_dialog_key == 5"
116
-      title="药规格"
117
+      title="药规格"
117 118
       @did-selected="didSelectDrugSpecUnit"
118 119
       @back="didCloseSingleOptionDialog"
119 120
       :options="drug_spec_unit_options"
120 121
       option_key="id"
121 122
       option_label_key="name"
122
-    ></single-option-dialog> -->
123
+    ></single-option-dialog>
123 124
 
124 125
     <single-option-dialog
125 126
       :visibility="sub_dialog_key == 2"
@@ -163,12 +164,12 @@ export default {
163 164
     SingleOptionDialog
164 165
   },
165 166
   props: {
166
-    // drug_spec_unit_options: {
167
-    //   type: Array,
168
-    //   default: function() {
169
-    //     return [];
170
-    //   }
171
-    // },
167
+    drug_spec_unit_options: {
168
+      type: Array,
169
+      default: function() {
170
+        return [];
171
+      }
172
+    },
172 173
     delivery_way_options: {
173 174
       type: Array,
174 175
       default: function() {
@@ -204,7 +205,7 @@ export default {
204 205
         title: "",
205 206
         advice_desc: "",
206 207
         // drug_spec: "",
207
-        // drug_spec_unit: "",
208
+        drug_spec_unit: "",
208 209
         delivery_way: "",
209 210
         execution_frequency: "",
210 211
         single_dose: "",
@@ -239,7 +240,7 @@ export default {
239 240
       this.order.title = "";
240 241
       this.order.advice_desc = "";
241 242
       // this.order.drug_spec = "";
242
-      // this.order.drug_spec_unit = "";
243
+      this.order.drug_spec_unit = "";
243 244
       this.order.delivery_way = "";
244 245
       this.order.execution_frequency = "";
245 246
       this.order.single_dose = "";
@@ -256,7 +257,7 @@ export default {
256 257
       this.order.title = order.title;
257 258
       this.order.advice_desc = order.advice_desc;
258 259
       // this.order.drug_spec = order.drug_spec;
259
-      // this.order.drug_spec_unit = order.drug_spec_unit;
260
+      this.order.drug_spec_unit = order.drug_spec_unit;
260 261
       this.order.delivery_way = order.delivery_way;
261 262
       this.order.execution_frequency = order.execution_frequency;
262 263
       this.order.single_dose = order.single_dose;
@@ -284,7 +285,7 @@ export default {
284 285
       this.order.remark = "";
285 286
 
286 287
       // this.order.drug_spec = "";
287
-      // this.order.drug_spec_unit = "";
288
+      this.order.drug_spec_unit = "";
288 289
       this.order.delivery_way =
289 290
         parent_delivery_way == undefined || parent_delivery_way == null
290 291
           ? ""
@@ -324,7 +325,9 @@ export default {
324 325
           single_dose_unit: this.order.single_dose_unit,
325 326
           prescribing_number: this.order.prescribing_number,
326 327
           prescribing_number_unit: this.order.prescribing_number_unit,
327
-          remark: this.order.remark
328
+          remark: this.order.remark,
329
+          drug_spec_unit: this.order.drug_spec_unit,
330
+
328 331
         });
329 332
       } else if (this.mode == 2) {
330 333
         this.$emit("did-modify", {
@@ -332,7 +335,7 @@ export default {
332 335
           title: this.order.title,
333 336
           advice_desc: this.order.advice_desc,
334 337
           // drug_spec: this.order.drug_spec,
335
-          // drug_spec_unit: this.order.drug_spec_unit,
338
+          drug_spec_unit: this.order.drug_spec_unit,
336 339
           delivery_way: this.order.delivery_way,
337 340
           execution_frequency: this.order.execution_frequency,
338 341
           single_dose: this.order.single_dose,
@@ -350,7 +353,7 @@ export default {
350 353
           title: this.order.title,
351 354
           advice_desc: this.order.advice_desc,
352 355
           // drug_spec: this.order.drug_spec,
353
-          // drug_spec_unit: this.order.drug_spec_unit,
356
+          drug_spec_unit: this.order.drug_spec_unit,
354 357
           delivery_way: this.order.delivery_way,
355 358
           execution_frequency: this.order.execution_frequency,
356 359
           single_dose: this.order.single_dose,
@@ -366,23 +369,40 @@ export default {
366 369
     },
367 370
     didSelectSingleDoseUnit: function(index) {
368 371
       this.didCloseSingleOptionDialog();
369
-      this.order.single_dose_unit = this.single_dose_unit_options[index].name;
372
+      if(index == -1){
373
+        this.order.single_dose_unit = '';
374
+
375
+      }else{
376
+        this.order.single_dose_unit = this.single_dose_unit_options[index].name;
377
+      }
378
+
370 379
     },
371 380
     selectDrugSpecUnitAction: function() {
372 381
       this.sub_dialog_key = 5;
373 382
     },
374
-    // didSelectDrugSpecUnit: function(index) {
375
-    //   this.didCloseSingleOptionDialog();
376
-    //   this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
377
-    // },
383
+    didSelectDrugSpecUnit: function(index) {
384
+      if(index == -1){
385
+        this.order.drug_spec_unit = '';
386
+
387
+      }else{
388
+        this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
389
+      }
390
+
391
+      this.didCloseSingleOptionDialog();
392
+    },
378 393
     selectPrescribingNumUnitAction: function() {
379 394
       this.sub_dialog_key = 2;
380 395
     },
381 396
     didSelectPrescribingNumUnit: function(index) {
382 397
       this.didCloseSingleOptionDialog();
383
-      this.order.prescribing_number_unit = this.prescribing_number_unit_options[
384
-        index
385
-      ].name;
398
+
399
+      if(index == -1){
400
+        this.order.prescribing_number_unit = '';
401
+
402
+      }else{
403
+        this.order.prescribing_number_unit = this.prescribing_number_unit_options[index].name;
404
+      }
405
+
386 406
     },
387 407
     selectDeliveryWayAction: function() {
388 408
       this.sub_dialog_key = 3;

+ 4 - 4
src/pages/main/dialog/new_order/select_advice_template_dialog.vue View File

@@ -25,14 +25,14 @@
25 25
                         <div v-show="isFold(template.id)" class="advice" v-for="(advice, index) in template.DoctorAdviceTemplate" :key="index">
26 26
                             <span v-if="advice.parent_id > 0" class="subdrug_info">
27 27
                               <span> {{ advice.advice_name }}</span>
28
-                              <span> {{ advice.advice_desc }} </span>
28
+                              <span> {{ advice.advice_desc }}{{advice.drug_spec_unit}} </span>
29 29
                               <span v-if="advice.prescribing_number"> {{ advice.prescribing_number }} {{ advice.prescribing_number_unit }}</span>
30 30
                               <span v-if="advice.single_dose">  单次用量{{ advice.single_dose }}{{ advice.single_dose_unit }}</span>
31 31
 
32 32
                             </span>
33 33
                             <van-checkbox v-else class="advice_info" :value="isAdviceSelecting(advice.id)" @click="selectAdviceAction(template, advice)">
34 34
                               <span> {{ advice.advice_name }}</span>
35
-                              <span> {{ advice.advice_desc }} </span>
35
+                              <span> {{ advice.advice_desc }}{{advice.drug_spec_unit}}</span>
36 36
                               <span v-if="advice.prescribing_number"> {{ advice.prescribing_number }} {{ advice.prescribing_number_unit }}</span>
37 37
                               <span v-if="advice.single_dose">  单次用量{{ advice.single_dose }}{{ advice.single_dose_unit }}</span>
38 38
                               <span> {{ advice.delivery_way }} </span>
@@ -226,7 +226,7 @@ export default {
226 226
 
227 227
   .template {
228 228
       border-bottom: 1px #e5e5e5 solid;
229
-      
229
+
230 230
       .template_name {
231 231
         height: 1rem;
232 232
         line-height: 1rem;
@@ -248,7 +248,7 @@ export default {
248 248
             width: 80%;
249 249
         }
250 250
       }
251
-      
251
+
252 252
       .advice {
253 253
           border-top: 1px #e5e5e5 solid;
254 254
           margin-left: 0.38rem;

+ 0 - 1
src/pages/main/dialog/new_order/single_option_dialog.vue View File

@@ -71,7 +71,6 @@ export default {
71 71
 <style style="stylesheet/scss" lang="scss" scoped>
72 72
 .optionsBox {
73 73
   background: #fff;
74
-  max-height: 10.6rem;
75 74
   min-height: 5rem;
76 75
   ul {
77 76
   overflow-y: scroll;

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

@@ -97,9 +97,8 @@ export default {
97 97
 <style style="stylesheet/scss" lang="scss" scoped>
98 98
 .optionsBox {
99 99
   background: #fff;
100
-  max-height: 10.6rem;
100
+  max-height: 10.0rem;
101 101
   min-height: 5rem;
102
-  overflow-y: scroll;
103 102
   ul {
104 103
   overflow-y: scroll;
105 104
   max-height: 9.0rem;

+ 17 - 1
src/pages/main/dialog/subMenu/multipleSubMenu.vue View File

@@ -250,38 +250,54 @@
250 250
           case 1:
251 251
             if (val.selectId != -2) {
252 252
               this.dialysisPrescription.niprocart = val.selectId
253
+            }else{
254
+              this.dialysisPrescription.niprocart = 0
255
+
253 256
             }
254 257
             break
255 258
           case 2:
256 259
             if (val.selectId != -2) {
257 260
               this.dialysisPrescription.jms = val.selectId
261
+            }else{
262
+              this.dialysisPrescription.jms = 0
258 263
             }
259 264
             break
260 265
           case 3:
261 266
             if (val.selectId != -2) {
262 267
               this.dialysisPrescription.fistula_needle_set = val.selectId
268
+            }else{
269
+              this.dialysisPrescription.fistula_needle_set = 0
270
+
263 271
             }
264 272
             break
265 273
           case 4:
266 274
             if (val.selectId != -2) {
267 275
 
268 276
               this.dialysisPrescription.fistula_needle_set_16 = val.selectId
277
+            }else{
278
+              this.dialysisPrescription.fistula_needle_set_16 = 0
279
+
269 280
             }
270 281
             break
271 282
           case 5:
272 283
             if (val.selectId != -2) {
273
-
274 284
               this.dialysisPrescription.hemoperfusion = val.selectId
285
+            }else{
286
+              this.dialysisPrescription.hemoperfusion = 0
275 287
             }
276 288
             break
277 289
           case 6:
278 290
             if (val.selectId != -2) {
279 291
               this.dialysisPrescription.dialyser_sterilised = val.selectId
292
+            }else{
293
+              this.dialysisPrescription.dialyser_sterilised = 0
280 294
             }
281 295
             break
282 296
           case 7:
283 297
             if (val.selectId != -2) {
284 298
               this.dialysisPrescription.filtryzer = val.selectId
299
+            }else{
300
+              this.dialysisPrescription.filtryzer = 0
285 301
             }
286 302
             break
287 303
         }

+ 12 - 11
src/pages/main/dialysis/AdviceTable.vue View File

@@ -108,7 +108,7 @@
108 108
 
109 109
             <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.start_time, "{m}-{d} {h}:{i}") }}</td>
110 110
             <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{ advice.advice_name }}</td>
111
-            <td>{{ advice.advice_desc }}</td>
111
+            <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
112 112
             <td ><span v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</span></td>
113 113
             <td ><span v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</span></td>
114 114
             <td>{{ advice.parent_id == 0 ? advice.delivery_way : "" }}</td>
@@ -221,7 +221,7 @@
221 221
         :single_dose_unit_options="unitsOption"
222 222
         :prescribing_number_unit_options="unitsOption"
223 223
       ></advice-form>
224
-      
224
+
225 225
       <modify-advice-form
226 226
         ref="modify_advice_form"
227 227
         @back="showPopup = false"
@@ -731,8 +731,9 @@ export default {
731 731
           parent_id: advice.parent_id,
732 732
           title: advice.advice_name,
733 733
           advice_desc: advice.advice_desc,
734
+
734 735
           // drug_spec: advice.drug_spec,
735
-          // drug_spec_unit: advice.drug_spec_unit,
736
+          drug_spec_unit: advice.drug_spec_unit,
736 737
           delivery_way: advice.delivery_way,
737 738
           execution_frequency: advice.execution_frequency,
738 739
           single_dose: advice.single_dose,
@@ -748,7 +749,7 @@ export default {
748 749
         advice_name: advice.title,
749 750
         advice_desc: advice.advice_desc,
750 751
         // drug_spec: String(advice.drug_spec),
751
-        // drug_spec_unit: advice.drug_spec_unit,
752
+        drug_spec_unit: advice.drug_spec_unit,
752 753
         delivery_way: advice.delivery_way,
753 754
         execution_frequency: advice.execution_frequency,
754 755
         single_dose: String(advice.single_dose),
@@ -771,7 +772,7 @@ export default {
771 772
           advice.advice_name = resp_advice.advice_name
772 773
           advice.advice_desc = resp_advice.advice_desc
773 774
           // advice.drug_spec = resp_advice.drug_spec
774
-          // advice.drug_spec_unit = resp_advice.drug_spec_unit,
775
+          advice.drug_spec_unit = resp_advice.drug_spec_unit,
775 776
           advice.delivery_way = resp_advice.delivery_way,
776 777
           advice.execution_frequency = resp_advice.execution_frequency,
777 778
           advice.single_dose = resp_advice.single_dose,
@@ -867,7 +868,7 @@ export default {
867 868
         advice_name: subdrug.title,
868 869
         advice_desc: subdrug.advice_desc,
869 870
         // drug_spec: String(subdrug.drug_spec),
870
-        // drug_spec_unit: subdrug.drug_spec_unit,
871
+        drug_spec_unit: subdrug.drug_spec_unit,
871 872
         single_dose: String(subdrug.single_dose),
872 873
         single_dose_unit: subdrug.single_dose_unit,
873 874
         prescribing_number: String(subdrug.prescribing_number),
@@ -1282,7 +1283,7 @@ export default {
1282 1283
                     advice_groups.push(group)
1283 1284
                     group = newGroupObject()
1284 1285
                   }
1285
-                    
1286
+
1286 1287
                   initGroupBlock(group, advice)
1287 1288
                   group.advices.push(advice)
1288 1289
                   advice_groups.push(group)
@@ -1386,12 +1387,12 @@ export default {
1386 1387
 
1387 1388
 <style style="stylesheet/scss" lang="scss"  scoped>
1388 1389
 .fixedTop{
1389
-  padding-top:52px; 
1390
+  padding-top:52px;
1390 1391
   background: #fff;
1391 1392
   min-height: calc(100vh - 200px);
1392 1393
 .choice {
1393 1394
   border-bottom: 1px #e5e5e5 solid;
1394
-  
1395
+
1395 1396
   ul {
1396 1397
     @include display-flex;
1397 1398
     @include align-items-center;
@@ -1407,7 +1408,7 @@ export default {
1407 1408
       @include text-align;
1408 1409
       @include justify-content-between;
1409 1410
       padding: 0.3rem 0;
1410
-    
1411
+
1411 1412
       .iconfont {
1412 1413
         margin: 0 0.1rem;
1413 1414
       }
@@ -1531,7 +1532,7 @@ export default {
1531 1532
   }
1532 1533
 }
1533 1534
 .AdviceTable{
1534
-  padding-top:0; 
1535
+  padding-top:0;
1535 1536
   background: #fff;
1536 1537
   min-height: calc(100vh - 230px);
1537 1538
 }

+ 3 - 4
src/pages/main/template/DialysisPrintOrderOne.vue View File

@@ -832,7 +832,7 @@
832 832
               <td class="advice-name">
833 833
                 <span v-if="advice[0].parent_id>0">└</span>
834 834
                 <span>{{advice[0].advice_name }}</span>
835
-                <span>{{advice[0].advice_desc}}</span>
835
+                <span>{{advice[0].advice_desc}}{{advice[0].drug_spec_unit}}</span>
836 836
                 <!-- <span v-if="advice[0].drug_spec">{{advice[0].drug_spec}}{{advice[0].drug_spec_unit}}</span> -->
837 837
                 <span v-if="advice[0].prescribing_number">* {{advice[0].prescribing_number}}{{advice[0].prescribing_number_unit}}</span>
838 838
                 <span
@@ -898,7 +898,7 @@
898 898
               </td>
899 899
               <td class="advice-name" v-if="advice[1] != undefined">
900 900
                 <span>{{advice[1].advice_name }}</span>
901
-                <span>{{advice[1].advice_desc}}</span>
901
+                <span>{{advice[1].advice_desc}}{{advice[1].drug_spec_unit}}</span>
902 902
                 <!-- <span v-if="advice[1].drug_spec">{{advice[1].drug_spec}}{{advice[1].drug_spec_unit}}</span> -->
903 903
                 <span v-if="advice[1].prescribing_number">* {{advice[1].prescribing_number}}{{advice[1].prescribing_number_unit}}</span>
904 904
                 <span
@@ -910,8 +910,7 @@
910 910
                   <div>▲</div>
911 911
                   <div>
912 912
                     <span>{{child.advice_name }}</span>
913
-                    <span>{{child.advice_desc}}</span>
914
-                    <span v-if="child.drug_spec">{{child.drug_spec}}{{child.drug_spec_unit}}</span>
913
+                    <span>{{child.advice_desc}}{{child.drug_spec_unit}}</span>
915 914
                     <span
916 915
                       v-if="child.prescribing_number">* {{child.prescribing_number}}{{child.prescribing_number_unit}}</span>
917 916
                     <span v-if="child.single_dose != 0">单次用量 {{child.single_dose}}{{child.single_dose_unit}}</span>

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

@@ -870,7 +870,7 @@
870 870
               </td>
871 871
               <td height="60px" class="advice-name" style="padding-left:7px;" :colspan="advice.children && advice.children.length > 0 || advice.parent_id > 0 ? 1 :2" v-if="advice.isShow == 2">
872 872
                 <span >{{advice.advice_name }}</span>
873
-                <span>{{advice.advice_desc}}</span>
873
+                <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
874 874
                 <span v-if="advice.prescribing_number">* {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
875 875
                 <span  v-if="advice.single_dose != 0">单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>
876 876
                 <span v-if="advice.parent_id == 0  && advice.children.length == 0">{{advice.delivery_way}}</span>
@@ -971,7 +971,7 @@
971 971
                 </td>
972 972
                 <td height="60px" class="advice-name" style="padding-left:7px;" :colspan="advice.children && advice.children.length > 0 || advice.parent_id > 0 ? 1 :2" v-if="advice.isShow == 2">
973 973
                   <span >{{advice.advice_name }}</span>
974
-                  <span>{{advice.advice_desc}}</span>
974
+                  <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
975 975
                   <span v-if="advice.prescribing_number">* {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
976 976
                   <span  v-if="advice.single_dose != 0">单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>
977 977
                   <span v-if="advice.parent_id == 0  && advice.children.length == 0">{{advice.delivery_way}}</span>

+ 3 - 6
src/pages/main/today/acceptsAssessment.vue View File

@@ -42,7 +42,7 @@
42 42
 
43 43
         <li style="height: 0.6rem;" v-if="isShow('跌倒风险预防措施')">
44 44
           <label>跌倒风险预防措施:</label>
45
-          <span class="content">{{posture}}</span>
45
+          <span class="content">{{precautions}}</span>
46 46
         </li>
47 47
 
48 48
         <li style="height: 0.6rem;" v-if="isShow('其他跌倒风险预防措施')">
@@ -82,10 +82,7 @@
82 82
           <label>其他心理评估:</label>
83 83
           <span class="content">{{this.record.psychological_other}}</span>
84 84
         </li>
85
-        <li style="height: 0.6rem;" v-if="isShow('其他病情')">
86
-          <label>其他病情 </label>
87
-          <span class="content">{{this.record.sick_condition_other}} </span>
88
-        </li>
85
+
89 86
       </ul>
90 87
 
91 88
 
@@ -209,7 +206,7 @@ export default {
209 206
       } else {
210 207
         return this.danger_level[this.record.danger_level] == undefined ? "" : this.danger_level[this.record.danger_level] + ""
211 208
       }
212
-    },precaution: function() {
209
+    },precautions: function() {
213 210
       if (this.record == null || this.record.id == "") {
214 211
         return ""
215 212
       } else {

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

@@ -150,7 +150,7 @@
150 150
 
151 151
         <li style="height: 0.6rem;" v-if="isShow('感染')">
152 152
           <label>感染:</label>
153
-          <span class="content">{{ is_infect ? '有' : '无' }}</span>
153
+          <span class="content">{{this.record.is_infect == 1 ? '有' : '无' }}</span>
154 154
           <span class="unit"> </span>
155 155
         </li>
156 156
 
@@ -164,7 +164,7 @@
164 164
 
165 165
         <li style="height: 0.6rem;" v-if="isShow('外露')">
166 166
           <label>外露:</label>
167
-          <span class="content">{{exposed?exposed:''}}</span>
167
+          <span class="content">{{this.record.exposed?exposed:''}}</span>
168 168
           <span class="unit">cm</span>
169 169
         </li>
170 170
 

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

@@ -6,9 +6,9 @@
6 6
         <tr>
7 7
           <th v-if="isShow('监测时间')" width="124px">时间</th>
8 8
           <th v-if="isShow('体温')" width="80px">体温(℃)</th>
9
+          <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
9 10
           <th v-if="isShow('脉搏')" width="80px">脉率(次/分)</th>
10 11
           <th v-if="isShow('呼吸频率')" width="110px">呼吸频率(次/分)</th>
11
-          <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
12 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>

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

@@ -23,7 +23,7 @@
23 23
             <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
24 24
               <span>{{advice.advice_name }}</span>
25 25
               <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
26
-              <span>{{advice.advice_desc}}</span>
26
+              <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
27 27
               <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
28 28
               <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
29 29
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>

+ 1 - 1
src/pages/waitingRoom/components/dialog/medicalOrder.vue View File

@@ -32,7 +32,7 @@
32 32
                     </td>
33 33
                     <td>
34 34
                       <span >{{advice.advice_name }}</span>
35
-                      <span >{{advice.advice_desc}}</span>
35
+                      <span >{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
36 36
                       <span v-if="advice.single_dose">{{advice.single_dose}}{{advice.single_dose_unit}}</span>
37 37
                       <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
38 38
                       <span >{{advice.delivery_way}}</span>

+ 2 - 0
src/store/index.js View File

@@ -47,6 +47,8 @@ const getters = {
47 47
   venous_catheterization_part: state => state.global_config.venous_catheterization_part,
48 48
   ductus_arantii: state => state.global_config.ductus_arantii,
49 49
   emergency_treatment: state => state.global_config.emergency_treatment,
50
+  skin: state => state.global_config.skin,
51
+
50 52
 
51 53
 
52 54
   dialysis_process: state => state.global_config.dialysis_process,

+ 2 - 5
src/utils/request.js View File

@@ -6,6 +6,7 @@ const service = axios.create({
6 6
   baseURL: process.env.BASE_API, // api的base_url
7 7
   timeout: 30000, // request timeout
8 8
   withCredentials: true
9
+
9 10
 })
10 11
 
11 12
 // respone interceptor
@@ -34,11 +35,7 @@ service.interceptors.response.use(
34 35
     }
35 36
   },
36 37
   error => {
37
-    console.log('err' + error) // for debug
38
-    Toast({
39
-      message: error.message,
40
-      duration: 2 * 1000
41
-    })
38
+
42 39
     return Promise.reject(error)
43 40
   })
44 41