Browse Source

修改华侨医院bug

csx 5 years ago
parent
commit
4409a61aee

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

@@ -226,6 +226,7 @@ export default {
226 226
     handleScheduleDateChange: function(date) {
227 227
       this.zone_selected = 0;
228 228
       this.schedual_type_selected = 0;
229
+
229 230
       this.$emit("clear_search_keyword");
230 231
       this.$store.dispatch("SaveDialysisAreaSelectIndexs", {
231 232
         zone: this.zone_selected,

+ 9 - 1
src/pages/main/PatientBox.vue View File

@@ -37,7 +37,9 @@
37 37
 <script>
38 38
   import {parseTime} from '@/utils'
39 39
   import {jsGetAge} from '@/utils/tools'
40
-
40
+  import {
41
+    setDialysisOrWaitSelectedConfig
42
+  } from '@/utils/data_config'
41 43
   export default {
42 44
     name: 'PatientBox',
43 45
     props: {
@@ -208,6 +210,12 @@
208 210
         })
209 211
       },
210 212
       detailAction: function (schedual) {
213
+        if(schedual.dialysis_order != null){
214
+          setDialysisOrWaitSelectedConfig(1)
215
+        }else{
216
+          setDialysisOrWaitSelectedConfig(0)
217
+        }
218
+
211 219
         var patient_id = schedual.patient_id
212 220
         var date = schedual.schedule_date
213 221
         this.$router.push({

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

@@ -1034,7 +1034,7 @@
1034 1034
 
1035 1035
               <td width="100">时间</td>
1036 1036
               <td width="80">血压<br/>mmHg</td>
1037
-              <td width="40">脉<br/>次/分</td>
1037
+              <td width="40">脉<br/>次/分</td>
1038 1038
               <td width="40">呼吸<br/>次/分</td>
1039 1039
               <td width="60">血流量<br/>ml/min</td>
1040 1040
               <td width="60">超滤量<br/>L</td>

+ 10 - 3
src/pages/main/RecordPage.vue View File

@@ -67,6 +67,7 @@
67 67
   import {Popover} from 'vux'
68 68
   import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
69 69
   import {parseTime} from '@/utils/index'
70
+  import {getDialysisOrWaitSelectedConfig} from '@/utils/data_config'
70 71
 
71 72
   export default {
72 73
     name: 'RecordPage',
@@ -84,9 +85,9 @@
84 85
         search_input: '',
85 86
         search_keyword: '',
86 87
         scheduals: [],
87
-        advice_groups:[],
88
-        unReadWaitNum:0,
89
-        unReadDialysisNum:0,
88
+        advice_groups: [],
89
+        unReadWaitNum: 0,
90
+        unReadDialysisNum: 0,
90 91
 
91 92
       }
92 93
     },
@@ -110,6 +111,12 @@
110 111
         this.search_input = ''
111 112
         this.search_keyword = ''
112 113
       },
114
+    }, created () {
115
+      var index = getDialysisOrWaitSelectedConfig()
116
+      console.log(index)
117
+      if (index != null){
118
+        this.index = index
119
+      }
113 120
     }
114 121
   }
115 122
 </script>

+ 26 - 1
src/pages/main/WaitingArea.vue View File

@@ -60,6 +60,12 @@
60 60
   import {getWaitingScheduals} from '@/api/dialysis'
61 61
   import {parseTime} from '@/utils'
62 62
   import {Popover} from 'vux'
63
+  import {
64
+    getSelectedAreaDataConfigList,
65
+    getSelectedTimesDataConfigList,
66
+    setSelectedAreaDataConfigList,
67
+    setSelectedTimesDataConfigList
68
+  } from '@/utils/data_config'
63 69
 
64 70
   export default {
65 71
     name: 'WaitingArea',
@@ -225,6 +231,24 @@
225 231
       }
226 232
     },
227 233
     created () {
234
+      var area = getSelectedAreaDataConfigList()
235
+      var time = getSelectedTimesDataConfigList()
236
+
237
+
238
+
239
+      if (area != null){
240
+        this.zone_options_visible = false
241
+        this.zone_selected = parseInt(area)
242
+        this.select_index = -1
243
+      }
244
+
245
+      if(time != null){
246
+        this.time_selected = parseInt(time)
247
+        this.select_index = -1
248
+        this.time_options_visible = false
249
+      }
250
+
251
+
228 252
       this.requestScheduals()
229 253
     },
230 254
     mounted () {
@@ -257,11 +281,12 @@
257 281
         this.zone_options_visible = false
258 282
         this.zone_selected = index
259 283
         this.select_index = -1
284
+        setSelectedAreaDataConfigList(index.toString())
260 285
       }, handleTimeChange: function (index) {
261 286
         this.time_selected = index
262 287
         this.select_index = -1
263 288
         this.time_options_visible = false
264
-
289
+        setSelectedTimesDataConfigList(index.toString())
265 290
       },
266 291
 
267 292
       requestScheduals () {

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

@@ -96,8 +96,8 @@
96 96
             <input type="tel" @focus="inputFocus" v-model="formValue.diastolic_blood_pressure"/>
97 97
           </div>
98 98
         </div>
99
-        <div class="item" v-if="isShow('脉')">
100
-          <h2 class="name">脉(次/分)</h2>
99
+        <div class="item" v-if="isShow('脉')">
100
+          <h2 class="name">脉(次/分)</h2>
101 101
           <div class="content">
102 102
             <input type="tel" @focus="inputFocus" v-model="formValue.pulse_frequency"/>
103 103
           </div>

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

@@ -20,8 +20,9 @@
20 20
             <tr @click="selectRow(-1, null)">
21 21
                 <th  v-if="isShow('监测时间')"  width="124px">时间</th>
22 22
                 <th  v-if="isShow('血压')" width="72px">血压(mmHg)</th>
23
-                <th  v-if="isShow('脉率')" width="80px">脉率(次/分)</th>
23
+                <th  v-if="isShow('脉搏')" width="80px">脉搏(次/分)</th>
24 24
                 <th  v-if="isShow('体温')" width="80px">体温(℃)</th>
25
+                <td v-if="isShow('心率')"  width="80px">心率(次/分)</td>
25 26
                 <th  v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
26 27
                 <th  v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
27 28
                 <th width="76px">静脉压/动脉压(mmHg)</th>
@@ -38,7 +39,7 @@
38 39
             <tr v-for="(item,index) in monitorRecords" :key="index" :value="item.value" @click="selectRow(index, item)" :class="index==currentIndex?rowClass:''">
39 40
                 <td   v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
40 41
                 <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:""}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:""}}</td>
41
-                <td v-if="isShow('脉')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
42
+                <td v-if="isShow('脉')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
42 43
                 <td v-if="isShow('体温')">{{item.temperature?item.temperature:""}}</td>
43 44
                 <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
44 45
                 <td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:""}}</td>
@@ -80,8 +81,8 @@
80 81
               <label>舒张压(mmHg)</label>
81 82
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.diastolic_bp">
82 83
             </div>
83
-            <div class="cell"  v-if="isShow('脉')">
84
-              <label>脉(次/分)</label>
84
+            <div class="cell"  v-if="isShow('脉')">
85
+              <label>脉(次/分)</label>
85 86
               <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.pulse_frequency">
86 87
             </div>
87 88
             <div class="cell"  v-if="isShow('体温')">

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

@@ -1062,7 +1062,7 @@
1062 1062
         this.$refs.exec_time.open()
1063 1063
       },
1064 1064
       openNewChild () {
1065
-        if (this.currentAdvices.length == 0) {
1065
+        if (this.currentAdvices.length == 0) {0
1066 1066
           return false
1067 1067
         }
1068 1068
         this.current_advice = this.currentAdvices[0]

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

@@ -242,7 +242,7 @@
242 242
 
243 243
 
244 244
 
245
-        <div class="item">
245
+        <div class="item" style="display: none">
246 246
           <label class="name" for="dtl">医生签名</label>
247 247
           <div class="content">
248 248
             <div v-if="isShowDesc">医生尚未签名</div>

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

@@ -165,8 +165,8 @@
165 165
             <!--<span class="iconfont">&#xe6f9;</span>-->
166 166
           </div>
167 167
         </div>
168
-        <div class="item" v-if="isShow('脉')">
169
-          <label class="name" for="ml">脉(次/分)</label>
168
+        <div class="item" v-if="isShow('脉')">
169
+          <label class="name" for="ml">脉(次/分)</label>
170 170
           <div class="content">
171 171
             <input type="tel" @focus="inputFocus" id="ml" v-model="formValue.pulse_frequency"/>
172 172
             <!--<span class="text">HD</span>-->

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

@@ -1,4 +1,4 @@
1
-<template>   
1
+<template>
2 2
   <div id="dialysis-print-box">
3 3
         <div class="dialysis-print-order">
4 4
           <div class="order-yy-name">{{orgname}}</div>

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

@@ -296,8 +296,8 @@ export default {
296 296
         { title: "接诊评估", name: "accepts_assessment", value: 0 },
297 297
         { title: "透前评估", name: "assessment_before", value: 0 },
298 298
         { title: "临时医嘱", name: "stat_order", value: 0 },
299
-        { title: "透析上机", name: "dialysis_computer", value: 0 },
300 299
         { title: "双人核对", name: "double_check", value: 0 },
300
+        { title: "透析上机", name: "dialysis_computer", value: 0 },
301 301
         { title: "透析监测", name: "dialysis_monitoring", value: 0 },
302 302
         { title: "透析下机", name: "dialysis_off", value: 0 },
303 303
         { title: "透后评估", name: "assessment_after", value: 0 },
@@ -325,7 +325,7 @@ export default {
325 325
       }
326 326
 
327 327
       if (!isNaN(this.dialysis_order.id) && this.dialysis_order.id > 0) {
328
-        steps[4].value = 1;
328
+        steps[5].value = 1;
329 329
         if (this.dialysis_order.stage == 2) {
330 330
           steps[7].value = 1;
331 331
         }
@@ -336,7 +336,7 @@ export default {
336 336
         !isNaN(this.double_check.modifier) &&
337 337
         this.double_check.modifier > 0
338 338
       ) {
339
-        steps[5].value = 1;
339
+        steps[4].value = 1;
340 340
       }
341 341
       if (this.monitor_records.length > 0) {
342 342
         steps[6].value = 1;
@@ -945,7 +945,7 @@ export default {
945 945
       this.doctor_advices.push([])
946 946
       this.scrollToView("stat_order");
947 947
     },
948
-    closeDialysisComputer: function() {
948
+    closeDialysisComputer: function(dialysis_order) {
949 949
       this.closeDialog(0);
950 950
       this.scrollToView("dialysis_computer");
951 951
     },

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

@@ -44,8 +44,8 @@
44 44
           <span class="content" id="tw">{{temperature?temperature:''}}</span>
45 45
           <span class="unit">{{temperature?"℃":''}}</span>
46 46
         </li>
47
-        <li v-if="isShow('脉')">
48
-          <label for="ml">脉 : </label>
47
+        <li v-if="isShow('脉')">
48
+          <label for="ml">脉 : </label>
49 49
           <span id="ml" class="content">{{pulse_frequency?pulse_frequency:''}}</span>
50 50
           <span class="unit">{{pulse_frequency?"次/分":''}}</span>
51 51
         </li>

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

@@ -50,8 +50,8 @@
50 50
           <span class="content">{{ temperature?temperature:''}}</span>
51 51
           <span class="unit">{{ temperature?'℃':''}}</span>
52 52
         </li>
53
-        <li v-if="isShow('脉')">
54
-          <label>脉 : </label>
53
+        <li v-if="isShow('脉')">
54
+          <label>脉 : </label>
55 55
           <span class="content">{{ pulse_frequency?pulse_frequency:''}}</span>
56 56
           <span class="unit">{{ pulse_frequency?'次/分':''}}</span>
57 57
         </li>

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

@@ -5,13 +5,12 @@
5 5
       <table  class="table" style="">
6 6
         <tr>
7 7
           <th  v-if="isShow('监测时间')" width="124px">时间</th>
8
-          <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
9
-          <th v-if="isShow('脉率')" width="80px">脉率(次/分)</th>
10 8
           <th v-if="isShow('体温')" width="80px">体温(℃)</th>
11
-          <th v-if="isShow('心率')" width="80px">心率(次/分)</th>
12
-          <th v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
13
-          <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
9
+          <th v-if="isShow('脉搏')" width="80px">脉率(次/分)</th>
10
+          <th v-if="isShow('呼吸频率')" width="110px">呼吸频率(次/分)</th>
11
+          <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
14 12
           <th  width="76px">静脉压/动脉压(mmHg)</th>
13
+          <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
15 14
           <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
16 15
           <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
17 16
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
@@ -24,13 +23,12 @@
24 23
         </tr>
25 24
         <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
26 25
           <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
27
-          <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
28
-          <td v-if="isShow('脉率')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
29 26
           <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
30
-          <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
31
-          <td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:''}}</td>
32
-          <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
27
+          <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
28
+          <td v-if="isShow('呼吸频率')">{{item.breathing_rate?item.breathing_rate:''}}</td>
29
+          <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
33 30
           <td>{{item.venous_pressure?item.venous_pressure:''}}/{{item.arterial_pressure?item.arterial_pressure:''}}</td>
31
+          <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
34 32
           <td v-if="isShow('跨膜压')">{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</td>
35 33
           <td v-if="isShow('超滤量')">{{item.ultrafiltration_volume?item.ultrafiltration_volume:''}}</td>
36 34
           <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:''}}</td>

+ 61 - 0
src/utils/data_config.js View File

@@ -3,6 +3,17 @@ const dataConfigKey = 'data_config_list'
3 3
 const filedConfigKey = 'filed_config_list'
4 4
 
5 5
 
6
+const areaConfigKey = 'area_config_list'
7
+const timeConfigKey = 'time_config_list'
8
+
9
+
10
+const dialysisAreaConfigKey = 'dialysis_area_config'
11
+const dialysisTimeConfigKey = 'dialysis_time_config'
12
+
13
+const dialysisOrWaitConfigKey = 'dialysis_or_wait_config'
14
+
15
+
16
+
6 17
 
7 18
 export function getDataConfigList() {
8 19
   return window.sessionStorage.getItem(dataConfigKey)
@@ -28,3 +39,53 @@ export function setFiledConfigList(infoJSONStr) {
28 39
 export function removeFiledConfigList() {
29 40
   window.sessionStorage.removeItem(filedConfigKey)
30 41
 }
42
+
43
+
44
+export function setSelectedAreaDataConfigList(value) {
45
+  console.log(value)
46
+  window.sessionStorage.setItem(areaConfigKey, value)
47
+}
48
+
49
+export function setSelectedTimesDataConfigList(value) {
50
+  console.log(value)
51
+  window.sessionStorage.setItem(timeConfigKey, value)
52
+}
53
+
54
+
55
+
56
+export function setDialysisSelectedAreaDataConfigList(value) {
57
+  window.sessionStorage.setItem(dialysisAreaConfigKey, value)
58
+}
59
+
60
+export function setDialysisSelectedTimesDataConfigList(value) {
61
+  window.sessionStorage.setItem(dialysisTimeConfigKey, value)
62
+}
63
+
64
+
65
+
66
+export function getSelectedAreaDataConfigList() {
67
+  return window.sessionStorage.getItem(areaConfigKey)
68
+}
69
+
70
+export function getSelectedTimesDataConfigList() {
71
+  return  window.sessionStorage.getItem(timeConfigKey)
72
+}
73
+
74
+
75
+
76
+export function getDialysisSelectedAreaDataConfigList() {
77
+  return window.sessionStorage.getItem(dialysisAreaConfigKey)
78
+}
79
+
80
+export function getDialysisSelectedTimesDataConfigList() {
81
+  return  window.sessionStorage.getItem(dialysisTimeConfigKey)
82
+}
83
+
84
+export function setDialysisOrWaitSelectedConfig(value) {
85
+  window.sessionStorage.setItem(dialysisOrWaitConfigKey, value)
86
+}
87
+
88
+
89
+export function getDialysisOrWaitSelectedConfig() {
90
+  return window.sessionStorage.getItem(dialysisOrWaitConfigKey)
91
+}