Bladeren bron

修改华侨医院bug

csx 5 jaren geleden
bovenliggende
commit
4409a61aee

+ 1 - 0
src/pages/main/DialysisArea.vue Bestand weergeven

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

+ 9 - 1
src/pages/main/PatientBox.vue Bestand weergeven

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

+ 1 - 1
src/pages/main/Print.vue Bestand weergeven

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

+ 10 - 3
src/pages/main/RecordPage.vue Bestand weergeven

67
   import {Popover} from 'vux'
67
   import {Popover} from 'vux'
68
   import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
68
   import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
69
   import {parseTime} from '@/utils/index'
69
   import {parseTime} from '@/utils/index'
70
+  import {getDialysisOrWaitSelectedConfig} from '@/utils/data_config'
70
 
71
 
71
   export default {
72
   export default {
72
     name: 'RecordPage',
73
     name: 'RecordPage',
84
         search_input: '',
85
         search_input: '',
85
         search_keyword: '',
86
         search_keyword: '',
86
         scheduals: [],
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
         this.search_input = ''
111
         this.search_input = ''
111
         this.search_keyword = ''
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
 </script>
122
 </script>

+ 26 - 1
src/pages/main/WaitingArea.vue Bestand weergeven

60
   import {getWaitingScheduals} from '@/api/dialysis'
60
   import {getWaitingScheduals} from '@/api/dialysis'
61
   import {parseTime} from '@/utils'
61
   import {parseTime} from '@/utils'
62
   import {Popover} from 'vux'
62
   import {Popover} from 'vux'
63
+  import {
64
+    getSelectedAreaDataConfigList,
65
+    getSelectedTimesDataConfigList,
66
+    setSelectedAreaDataConfigList,
67
+    setSelectedTimesDataConfigList
68
+  } from '@/utils/data_config'
63
 
69
 
64
   export default {
70
   export default {
65
     name: 'WaitingArea',
71
     name: 'WaitingArea',
225
       }
231
       }
226
     },
232
     },
227
     created () {
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
       this.requestScheduals()
252
       this.requestScheduals()
229
     },
253
     },
230
     mounted () {
254
     mounted () {
257
         this.zone_options_visible = false
281
         this.zone_options_visible = false
258
         this.zone_selected = index
282
         this.zone_selected = index
259
         this.select_index = -1
283
         this.select_index = -1
284
+        setSelectedAreaDataConfigList(index.toString())
260
       }, handleTimeChange: function (index) {
285
       }, handleTimeChange: function (index) {
261
         this.time_selected = index
286
         this.time_selected = index
262
         this.select_index = -1
287
         this.select_index = -1
263
         this.time_options_visible = false
288
         this.time_options_visible = false
264
-
289
+        setSelectedTimesDataConfigList(index.toString())
265
       },
290
       },
266
 
291
 
267
       requestScheduals () {
292
       requestScheduals () {

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

96
             <input type="tel" @focus="inputFocus" v-model="formValue.diastolic_blood_pressure"/>
96
             <input type="tel" @focus="inputFocus" v-model="formValue.diastolic_blood_pressure"/>
97
           </div>
97
           </div>
98
         </div>
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
           <div class="content">
101
           <div class="content">
102
             <input type="tel" @focus="inputFocus" v-model="formValue.pulse_frequency"/>
102
             <input type="tel" @focus="inputFocus" v-model="formValue.pulse_frequency"/>
103
           </div>
103
           </div>

+ 5 - 4
src/pages/main/dialog/MonitDialog.vue Bestand weergeven

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

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

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

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

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

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

165
             <!--<span class="iconfont">&#xe6f9;</span>-->
165
             <!--<span class="iconfont">&#xe6f9;</span>-->
166
           </div>
166
           </div>
167
         </div>
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
           <div class="content">
170
           <div class="content">
171
             <input type="tel" @focus="inputFocus" id="ml" v-model="formValue.pulse_frequency"/>
171
             <input type="tel" @focus="inputFocus" id="ml" v-model="formValue.pulse_frequency"/>
172
             <!--<span class="text">HD</span>-->
172
             <!--<span class="text">HD</span>-->

+ 1 - 1
src/pages/main/template/DialysisPrintOrderOne.vue Bestand weergeven

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

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

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

+ 2 - 2
src/pages/main/today/assessmentAfter.vue Bestand weergeven

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

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

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

+ 8 - 10
src/pages/main/today/dialysisMonitoring.vue Bestand weergeven

5
       <table  class="table" style="">
5
       <table  class="table" style="">
6
         <tr>
6
         <tr>
7
           <th  v-if="isShow('监测时间')" width="124px">时间</th>
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
           <th v-if="isShow('体温')" width="80px">体温(℃)</th>
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
           <th  width="76px">静脉压/动脉压(mmHg)</th>
12
           <th  width="76px">静脉压/动脉压(mmHg)</th>
13
+          <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
15
           <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
14
           <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
16
           <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
15
           <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
17
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
16
           <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
24
         </tr>
23
         </tr>
25
         <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
24
         <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
26
           <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
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
           <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
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
           <td>{{item.venous_pressure?item.venous_pressure:''}}/{{item.arterial_pressure?item.arterial_pressure:''}}</td>
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
           <td v-if="isShow('跨膜压')">{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</td>
32
           <td v-if="isShow('跨膜压')">{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</td>
35
           <td v-if="isShow('超滤量')">{{item.ultrafiltration_volume?item.ultrafiltration_volume:''}}</td>
33
           <td v-if="isShow('超滤量')">{{item.ultrafiltration_volume?item.ultrafiltration_volume:''}}</td>
36
           <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:''}}</td>
34
           <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:''}}</td>

+ 61 - 0
src/utils/data_config.js Bestand weergeven

3
 const filedConfigKey = 'filed_config_list'
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
 export function getDataConfigList() {
18
 export function getDataConfigList() {
8
   return window.sessionStorage.getItem(dataConfigKey)
19
   return window.sessionStorage.getItem(dataConfigKey)
28
 export function removeFiledConfigList() {
39
 export function removeFiledConfigList() {
29
   window.sessionStorage.removeItem(filedConfigKey)
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
+}