Browse Source

Merge branch 'update' of http://git.shengws.com/zhangbj/xt_pad into update

csx 5 years ago
parent
commit
dfb1b8e155

+ 55 - 50
src/pages/main/DetailsPage.vue View File

@@ -23,7 +23,6 @@
23 23
                 <!-- <div class="time" style="width:1.49rem;">
24 24
                   <span class="iconfont">2018-01-01&#xe74a;</span>
25 25
                 </div> -->
26
-
27 26
               <div class="print" style="float: right;">
28 27
                 <el-button size="mini" type="primary" @click="print" icon="el-icon-printer">打印</el-button>
29 28
               </div>
@@ -36,7 +35,6 @@
36 35
               <today-tab ref="today" v-show="index==2" title="今日" ></today-tab>
37 36
             </div>
38 37
 
39
-
40 38
         </div>
41 39
          <!-- <mt-datetime-picker
42 40
             v-model="pickerVisible"
@@ -46,23 +44,24 @@
46 44
             month-format="{value} "
47 45
             date-format="{value} ">
48 46
         </mt-datetime-picker> -->
47
+
49 48
     </div>
50 49
 </template>
51 50
 
52 51
 <script>
53
-import SideBar from "@/pages/layout/SideBar";
54
-import TodayTab from "./today/TodayTab";
55
-import DialysisTab from "./dialysis/DialysisTab";
56
-import RecordsTab from "./records/RecordsTab";
57
-import { Popover } from "vux";
58
-import CheckTab from "./dialysis/CheckTab";
59
-import {parseTime} from "@/utils"
60
-import {GetPatientInfoWithDiseases} from "@/api/patient";
61
-import { Toast } from 'vant';
62
-import CaseHistory from "./records/CaseHistory";
52
+import SideBar from '@/pages/layout/SideBar'
53
+import TodayTab from './today/TodayTab'
54
+import DialysisTab from './dialysis/DialysisTab'
55
+import RecordsTab from './records/RecordsTab'
56
+import { Popover } from 'vux'
57
+import CheckTab from './dialysis/CheckTab'
58
+import {parseTime} from '@/utils'
59
+import {GetPatientInfoWithDiseases} from '@/api/patient'
60
+import { Toast } from 'vant'
61
+import CaseHistory from './records/CaseHistory'
63 62
 
64 63
 export default {
65
-  name: "DetailsPage",
64
+  name: 'DetailsPage',
66 65
   components: {
67 66
     CaseHistory,
68 67
     CheckTab,
@@ -70,60 +69,67 @@ export default {
70 69
     TodayTab,
71 70
     DialysisTab,
72 71
     RecordsTab,
73
-    Popover,
72
+    Popover
74 73
   },
75
-  data() {
74
+  data () {
76 75
     return {
77 76
       // pickerVisible: new Date(),
78 77
       patient_id: 0,
79
-      patient_name: "",
78
+      patient_name: '',
80 79
       date: 0,
81 80
       index: 2,
82
-      patient: null,
83
-    };
81
+      patient: null
82
+    }
84 83
   },
85
-  created() {
86
-    var patient_id = this.$route.query.patient_id;
87
-    var date = this.$route.query.date;
88
-    var patient_name = this.$route.query.patient_name;
89
-    this.patient_id = patient_id;
90
-    this.date = date;
91
-    this.patient_name = patient_name;
92
-    this.GetPatientInfoWithDiseases(this.patient_id);
84
+  created () {
85
+    var patient_id = this.$route.query.patient_id
86
+    var date = this.$route.query.date
87
+    var patient_name = this.$route.query.patient_name
88
+    this.patient_id = patient_id
89
+    this.date = date
90
+    this.patient_name = patient_name
91
+    this.GetPatientInfoWithDiseases(this.patient_id)
93 92
   },
94 93
   methods: {
95
-    ClickTab: function(tabIndex) {
96
-      this.index = tabIndex;
94
+    ClickTab: function (tabIndex) {
95
+      this.index = tabIndex
96
+    },
97
+    backAction () {
98
+      this.$router.back(-1)
97 99
     },
98
-    backAction() {
99
-      this.$router.back(-1);
100
+    openPicker () {
101
+      this.$refs.picker.open()
100 102
     },
101
-    openPicker() {
102
-      this.$refs.picker.open();
103
-    },print:function () {
104
-      var xtdate = parseTime(this.date, "{y}-{m}-{d}")
105
-      if(this.patient != null){
106
-        this.$router.push('/Print?xtdate='+xtdate+'&xtno='+this.patient.dialysis_no);
103
+    print: function () {
104
+      var xtdate = parseTime(this.date, '{y}-{m}-{d}')
105
+      if (this.patient != null) {
106
+        this.$router.push('/Print?xtdate=' + xtdate + '&xtno=' + this.patient.dialysis_no)
107 107
       }
108
-    },GetPatientInfoWithDiseases(id) {
109
-      GetPatientInfoWithDiseases(id).then(response=>{
110
-        if (response.data.state==1) {
111
-          this.patient = response.data.data.patient;
112
-        }else {
113
-          Toast.fail("网络异常");
114
-          return false;
108
+    },
109
+    GetPatientInfoWithDiseases (id) {
110
+      GetPatientInfoWithDiseases(id).then(response => {
111
+        if (response.data.state == 1) {
112
+          this.patient = response.data.data.patient
113
+        } else {
114
+          Toast.fail('网络异常')
115
+          return false
115 116
         }
116 117
       }).catch(() => {
117 118
         // on cancel
118
-        Toast.fail("网络异常");
119
-        return false;
120
-      });
121
-    },jump:function (val) {
119
+        Toast.fail('网络异常')
120
+        return false
121
+      })
122
+    },
123
+    jump: function (val) {
122 124
       this.index = 2
123
-
125
+    },
126
+    toMyPatients () {
127
+      var patient_id = this.$route.query.patient_id
128
+      console.log('patientid是谁呢', patient_id)
129
+      this.$router.push('/mypatients/' + patient_id)
124 130
     }
125 131
   }
126
-};
132
+}
127 133
 </script>
128 134
 
129 135
 <style style="stylesheet/scss" lang="scss" scoped>
@@ -178,4 +184,3 @@ export default {
178 184
   }
179 185
 }
180 186
 </style>
181
-

+ 142 - 139
src/pages/main/DialysisArea.vue View File

@@ -114,105 +114,104 @@
114 114
 </template>
115 115
 
116 116
 <script>
117
-import PatientBox from "./PatientBox";
118
-import { Popover } from "vux";
119
-import { Datetime } from "vux";
120
-import { parseTime } from "@/utils/index";
121
-import { getDialysisScheduals } from "@/api/dialysis";
122
-import { Toast } from "vant";
117
+import PatientBox from './PatientBox'
118
+import { Popover } from 'vux'
119
+import { Datetime } from 'vux'
120
+import { parseTime } from '@/utils/index'
121
+import { getDialysisScheduals } from '@/api/dialysis'
122
+import { Toast } from 'vant'
123 123
 
124 124
 export default {
125
-  name: "DialysisArea",
125
+  name: 'DialysisArea',
126 126
   components: {
127 127
     PatientBox,
128 128
     Popover,
129 129
     Datetime
130 130
   },
131
-  inject: ["reload"],
132
-  data() {
131
+  inject: ['reload'],
132
+  data () {
133 133
     return {
134 134
       loading: false,
135 135
       user_id: 0,
136 136
       networkStates: true,
137 137
       timer: null,
138 138
       ismypatient: false,
139
-      selected_date: this.$store.getters.app.dialysis_area.schedule_date, //new Date(),
139
+      selected_date: this.$store.getters.app.dialysis_area.schedule_date, // new Date(),
140 140
       schedual_types: [
141
-        { value: 0, text: "全部班", select: true },
142
-        { value: 1, text: "上午", select: false },
143
-        { value: 2, text: "下午", select: false },
144
-        { value: 3, text: "晚上", select: false }
141
+        { value: 0, text: '全部班', select: true },
142
+        { value: 1, text: '上午', select: false },
143
+        { value: 2, text: '下午', select: false },
144
+        { value: 3, text: '晚上', select: false }
145 145
       ],
146 146
       schedual_type_selected: this.$store.getters.app.dialysis_area
147 147
         .schedule_type_select_index,
148 148
 
149 149
       zone_selected: this.$store.getters.app.dialysis_area.zone_select_index,
150
-      zones: [{ value: 0, text: "全部分区", select: true }],
150
+      zones: [{ value: 0, text: '全部分区', select: true }],
151 151
       dialysis_scheduals: [],
152 152
 
153 153
       zone_options_visible: false,
154 154
       sch_type_options_visible: false
155
-    };
155
+    }
156 156
   },
157 157
   props: {
158 158
     search_keyword: {
159 159
       type: String,
160
-      default: ""
160
+      default: ''
161 161
     }
162 162
   },
163 163
   computed: {
164
-    selected_date_str: function() {
165
-      return parseTime(this.selected_date, "{y}-{m}-{d}");
164
+    selected_date_str: function () {
165
+      return parseTime(this.selected_date, '{y}-{m}-{d}')
166 166
     },
167 167
 
168
-    filtedScheduals: function() {
168
+    filtedScheduals: function () {
169 169
       if (this.dialysis_scheduals.length == 0) {
170
-        return [];
170
+        return []
171 171
       }
172 172
 
173
-      var search_keyword = this.search_keyword;
173
+      var search_keyword = this.search_keyword
174 174
       if (search_keyword.length > 0) {
175
-        var schedules = [];
175
+        var schedules = []
176 176
         for (let o_i = 0; o_i < this.dialysis_scheduals.length; o_i++) {
177
-          const scheduleInfo = this.dialysis_scheduals[o_i];
178
-          var originSchedules = scheduleInfo.scheduals;
177
+          const scheduleInfo = this.dialysis_scheduals[o_i]
178
+          var originSchedules = scheduleInfo.scheduals
179 179
           if (originSchedules.length == 0) {
180
-            continue;
180
+            continue
181 181
           }
182
-          var filtedSchedules = [];
182
+          var filtedSchedules = []
183 183
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
184
-            const schedule = originSchedules[s_i];
184
+            const schedule = originSchedules[s_i]
185 185
             if (
186 186
               schedule.patient.name.indexOf(search_keyword) != -1 ||
187 187
               schedule.patient.dialysis_no.indexOf(search_keyword) != -1
188 188
             ) {
189
-              filtedSchedules.push(schedule);
190
-              break;
189
+              filtedSchedules.push(schedule)
190
+              break
191 191
             }
192 192
           }
193 193
           if (filtedSchedules.length > 0) {
194 194
             schedules.push({
195 195
               zone_name: scheduleInfo.zone_name,
196 196
               scheduals: filtedSchedules
197
-            });
197
+            })
198 198
           }
199 199
         }
200
-        return schedules;
200
+        return schedules
201 201
       }
202
-
203
-       if (this.ismypatient) {
204
-        var schedules = [];
202
+      if (this.ismypatient) {
203
+        var schedules = []
205 204
         for (let o_i = 0; o_i < this.dialysis_scheduals.length; o_i++) {
206
-          const scheduleInfo = this.dialysis_scheduals[o_i];
207
-          var originSchedules = scheduleInfo.scheduals;
205
+          const scheduleInfo = this.dialysis_scheduals[o_i]
206
+          var originSchedules = scheduleInfo.scheduals
208 207
           if (originSchedules.length == 0) {
209
-            continue;
208
+            continue
210 209
           }
211
-          var filtedSchedules = [];
210
+          var filtedSchedules = []
212 211
           for (let s_i = 0; s_i < originSchedules.length; s_i++) {
213
-            const schedule = originSchedules[s_i];
214
-            if (schedule.dialysis_order.start_nurse == this.user_id ) {
215
-              filtedSchedules.push(schedule);
212
+            const schedule = originSchedules[s_i]
213
+            if (schedule.dialysis_order.start_nurse == this.user_id) {
214
+              filtedSchedules.push(schedule)
216 215
               // break;
217 216
             }
218 217
           }
@@ -220,35 +219,34 @@ export default {
220 219
             schedules.push({
221 220
               zone_name: scheduleInfo.zone_name,
222 221
               scheduals: filtedSchedules
223
-            });
222
+            })
224 223
           }
225 224
         }
226
-        return schedules;
225
+        return schedules
227 226
       }
228 227
 
229
-      var zone_selected = this.zone_selected;
230
-      var timetype_selected = this.schedual_type_selected;
231
-      if ( (zone_selected == 0 && timetype_selected == 0) || this.zones.length <= 1 ) {
232
-        return this.dialysis_scheduals;
228
+      var zone_selected = this.zone_selected
229
+      var timetype_selected = this.schedual_type_selected
230
+      if ((zone_selected == 0 && timetype_selected == 0) || this.zones.length <= 1) {
231
+        return this.dialysis_scheduals
233 232
       }
234 233
 
235
-      var zone_name = zone_selected == 0 ? "" : this.zones[zone_selected].text;
236
-      var schedules = [];
234
+      var zone_name = zone_selected == 0 ? '' : this.zones[zone_selected].text
235
+      var schedules = []
237 236
       for (let o_i = 0; o_i < this.dialysis_scheduals.length; o_i++) {
238
-        const scheduleInfo = this.dialysis_scheduals[o_i];
239
-        var originSchedules = scheduleInfo.scheduals;
240
-        var filtedSchedules = [];
237
+        const scheduleInfo = this.dialysis_scheduals[o_i]
238
+        var originSchedules = scheduleInfo.scheduals
239
+        var filtedSchedules = []
241 240
         for (let s_i = 0; s_i < originSchedules.length; s_i++) {
242
-          const schedule = originSchedules[s_i];
243
-           if(this.ismypatient){
244
-             if ( schedule.dialysis_order.creator == this.user_id){
245
-               filtedSchedules.push(schedule);
241
+          const schedule = originSchedules[s_i]
242
+          if (this.ismypatient) {
243
+            if (schedule.dialysis_order.creator == this.user_id) {
244
+              filtedSchedules.push(schedule)
246 245
              }
247
-           }
248
-          else {
249
-            if  ( zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name) ) {
250
-              if ( timetype_selected == 0 || schedule.schedule_type == timetype_selected ) {
251
-                filtedSchedules.push(schedule);
246
+          } else {
247
+            if (zone_name.length == 0 || (zone_name.length > 0 && zone_name == schedule.device_number.zone.name)) {
248
+              if (timetype_selected == 0 || schedule.schedule_type == timetype_selected) {
249
+                filtedSchedules.push(schedule)
252 250
               }
253 251
             }
254 252
           }
@@ -257,160 +255,165 @@ export default {
257 255
           schedules.push({
258 256
             zone_name: scheduleInfo.zone_name,
259 257
             scheduals: filtedSchedules
260
-          });
258
+          })
261 259
         }
262 260
       }
263 261
       this.ismypatient = false
264
-      return schedules;
262
+      return schedules
265 263
     }
266 264
   },
267
-  created() {
268
-    this.user_id = this.$store.getters.user.user.id;
269
-    this.requestDialysisScheduals();
265
+
266
+  created () {
267
+    this.user_id = this.$store.getters.user.user.id
268
+    this.requestDialysisScheduals()
270 269
   },
271
-  mounted() {
270
+  mounted () {
272 271
     this.timer = window.setInterval(() => {
273
-      setTimeout(this.requestDialysisScheduals(), 0);
274
-    }, 30000);
272
+      setTimeout(this.requestDialysisScheduals(), 0)
273
+    }, 30000)
275 274
   },
276
-  beforeDestroy() {
277
-    clearInterval(this.timer);
278
-    this.timer = null;
275
+  beforeDestroy () {
276
+    clearInterval(this.timer)
277
+    this.timer = null
279 278
   },
280 279
   methods: {
281
-    mypatient(){
282
-      this.search_keyword = '';
283
-      this.zone_selected = 0;
284
-      this.schedual_type_selected = 0;
285
-      this.ismypatient = true;
280
+    mypatient () {
281
+      this.search_keyword = ''
282
+      this.zone_selected = 0
283
+      this.schedual_type_selected = 0
284
+      this.ismypatient = true
286 285
     },
287
-    reloads: function() {
288
-      this.reload();
286
+    reloads: function () {
287
+      this.reload()
289 288
     },
290
-    handletimeType: function(index) {
289
+    handletimeType: function (index) {
291 290
       this.ismypatient = false
292
-      this.sch_type_options_visible = false;
293
-      this.schedual_type_selected = index;
294
-      this.$emit("clear_search_keyword");
295
-      this.$store.dispatch("SaveDialysisAreaSelectIndexs", {
291
+      this.sch_type_options_visible = false
292
+      this.schedual_type_selected = index
293
+      this.$emit('clear_search_keyword')
294
+      this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
296 295
         zone: this.zone_selected,
297 296
         schedule_type: this.schedual_type_selected,
298 297
         schedule_date: this.selected_date
299
-      });
298
+      })
300 299
     },
301
-    handleZoneChange: function(index) {
300
+    handleZoneChange: function (index) {
302 301
       this.ismypatient = false
303
-      this.zone_options_visible = false;
304
-      this.zone_selected = index;
305
-      this.$emit("clear_search_keyword");
306
-      this.$store.dispatch("SaveDialysisAreaSelectIndexs", {
302
+      this.zone_options_visible = false
303
+      this.zone_selected = index
304
+      this.$emit('clear_search_keyword')
305
+      this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
307 306
         zone: this.zone_selected,
308 307
         schedule_type: this.schedual_type_selected,
309 308
         schedule_date: this.selected_date
310
-      });
309
+      })
311 310
     },
312
-    handleScheduleDateChange: function(date) {
311
+    handleScheduleDateChange: function (date) {
313 312
       this.ismypatient = false
314
-      this.zone_selected = 0;
315
-      this.schedual_type_selected = 0;
316
-
317
-      this.$emit("clear_search_keyword");
318
-      this.$store.dispatch("SaveDialysisAreaSelectIndexs", {
313
+      this.zone_selected = 0
314
+      this.schedual_type_selected = 0
315
+      this.$emit('clear_search_keyword')
316
+      this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
319 317
         zone: this.zone_selected,
320 318
         schedule_type: this.schedual_type_selected,
321 319
         schedule_date: this.selected_date
322
-      });
323
-      this.requestDialysisScheduals();
320
+      })
321
+      this.requestDialysisScheduals()
324 322
     },
325 323
 
326
-    requestDialysisScheduals() {
324
+    requestDialysisScheduals () {
327 325
       // this.$toast.loading({forbidClick: true, duration: 0})
328 326
       // this.loading = true;
329
-      var type = 0;
327
+      var type = 0
330 328
       getDialysisScheduals({ type: type, date: this.selected_date_str })
331 329
         .then(rs => {
332
-          this.networkStates = true;
333
-          var resp = rs.data;
330
+          this.networkStates = true
331
+          var resp = rs.data
334 332
           if (resp.state == 1) {
335
-            this.loading = false;
333
+            this.loading = false
336 334
 
337 335
             // console.log(resp.data)
338
-            var scheduals = resp.data.scheduals;
339
-            var zoneMap = {};
340
-            var schedualMap = {};
336
+            var scheduals = resp.data.scheduals
337
+            console.log('scheduals是什么', scheduals)
338
+            var zoneMap = {}
339
+            var schedualMap = {}
341 340
             for (let index = 0; index < scheduals.length; index++) {
342
-              const schedual = scheduals[index];
341
+              const schedual = scheduals[index]
343 342
               if (schedual.dialysis_order == null) {
344
-                continue;
343
+                continue
345 344
               }
346 345
               if (schedualMap[schedual.device_number.zone.name] == null) {
347
-                schedualMap[schedual.device_number.zone.name] = [];
346
+                schedualMap[schedual.device_number.zone.name] = []
348 347
               }
349
-              schedualMap[schedual.device_number.zone.name].push(schedual);
348
+              schedualMap[schedual.device_number.zone.name].push(schedual)
350 349
               if (zoneMap[schedual.device_number.zone.name] == null) {
351 350
                 zoneMap[schedual.device_number.zone.name] =
352
-                  schedual.device_number.zone;
351
+                  schedual.device_number.zone
353 352
               }
354 353
             }
355 354
 
356
-            var zones = [];
357
-            zones.push({ value: 0, text: "全部分区" });
355
+            var zones = []
356
+            zones.push({ value: 0, text: '全部分区' })
358 357
             for (var zoneName in zoneMap) {
359
-              zones.push({ value: zoneMap[zoneName].id, text: zoneName });
358
+              zones.push({ value: zoneMap[zoneName].id, text: zoneName })
360 359
             }
361 360
 
362
-            zones = zones.sort(function(a, b) {
363
-              return a.value > b.value;
364
-            });
365
-            this.zones = zones;
361
+            zones = zones.sort(function (a, b) {
362
+              return a.value > b.value
363
+            })
364
+            this.zones = zones
366 365
 
367
-            var dialysis_scheduals = [];
366
+            var dialysis_scheduals = []
368 367
             for (let index = 0; index < zones.length; index++) {
369
-              const zone = zones[index];
370
-              var scheduals = schedualMap[zone.text];
368
+              const zone = zones[index]
369
+              var scheduals = schedualMap[zone.text]
371 370
               if (scheduals == null) {
372
-                continue;
371
+                continue
373 372
               }
374 373
               dialysis_scheduals.push({
375 374
                 zone_name: zone.text,
376 375
                 scheduals: scheduals
377
-              });
376
+              })
378 377
             }
379
-            this.dialysis_scheduals = dialysis_scheduals;
378
+            this.dialysis_scheduals = dialysis_scheduals
380 379
           } else {
381
-            this.loading = false;
380
+            this.loading = false
382 381
 
383 382
             this.$toast({
384 383
               message: resp.msg
385
-            });
384
+            })
386 385
           }
387 386
         })
388 387
         .catch(error => {
389
-          this.loading = false;
388
+          this.loading = false
390 389
 
391
-          //超时之后在这里捕抓错误信息.
390
+          // 超时之后在这里捕抓错误信息.
392 391
           if (error.response) {
393
-            this.networkStates = false;
392
+            this.networkStates = false
394 393
 
395
-            console.log("error.response");
396
-            console.log(error.response);
394
+            console.log('error.response')
395
+            console.log(error.response)
397 396
           } else if (error.request) {
398
-            this.networkStates = false;
397
+            this.networkStates = false
399 398
 
400 399
             // if(error.request.readyState == 4 && error.request.status == 0){
401 400
             //   //我在这里重新请求
402 401
             //   this.networkStates = false
403 402
             // }
404 403
           } else {
405
-            this.networkStates = false;
404
+            this.networkStates = false
406 405
           }
407
-        });
406
+        })
408 407
     },
409
-    openPicker() {
410
-      this.$refs.picker.open();
408
+    openPicker () {
409
+      this.$refs.picker.open()
411 410
     }
411
+    // getMyPatient () {
412
+    //   console.log('这是啥', this.zone_options_visible)
413
+    //   console.log('日期', this.selected_date)
414
+    // }
412 415
   }
413
-};
416
+}
414 417
 </script>
415 418
 
416 419
 <style style="stylesheet/scss" lang="scss" scoped>

+ 51 - 52
src/pages/main/RecordPage.vue View File

@@ -60,65 +60,65 @@
60 60
   </div>
61 61
 </template>
62 62
 
63
-
64 63
 <script>
65
-  import DialysisArea from './DialysisArea'
66
-  import WaitingArea from './WaitingArea'
67
-  import {Popover} from 'vux'
68
-  import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
69
-  import {parseTime} from '@/utils/index'
70
-  import {getDialysisOrWaitSelectedConfig} from '@/utils/data_config'
64
+import DialysisArea from './DialysisArea'
65
+import WaitingArea from './WaitingArea'
66
+import {Popover} from 'vux'
67
+import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
68
+import {parseTime} from '@/utils/index'
69
+import {getDialysisOrWaitSelectedConfig} from '@/utils/data_config'
71 70
 
72
-  export default {
73
-    name: 'RecordPage',
74
-    props: {
75
-      un_read_wait_num: {
76
-        type: Number,
77
-      },
78
-      un_read_dialysis_num: {
79
-        type: Number,
80
-      }
71
+export default {
72
+  name: 'RecordPage',
73
+  props: {
74
+    un_read_wait_num: {
75
+      type: Number
81 76
     },
82
-    data () {
83
-      return {
84
-        index: 1,
85
-        search_input: '',
86
-        search_keyword: '',
87
-        scheduals: [],
88
-        advice_groups: [],
89
-        unReadWaitNum: 0,
90
-        unReadDialysisNum: 0,
77
+    un_read_dialysis_num: {
78
+      type: Number
79
+    }
80
+  },
81
+  data () {
82
+    return {
83
+      index: 1,
84
+      search_input: '',
85
+      search_keyword: '',
86
+      scheduals: [],
87
+      advice_groups: [],
88
+      unReadWaitNum: 0,
89
+      unReadDialysisNum: 0
90
+
91
+    }
92
+  },
93
+  components: {
94
+    DialysisArea,
95
+    WaitingArea,
96
+    Popover
97
+    // Group,
98
+    // Cell
99
+  },
91 100
 
92
-      }
101
+  methods: {
102
+    ClickTab: function (tabIndex) {
103
+      this.index = tabIndex
93 104
     },
94
-    components: {
95
-      DialysisArea,
96
-      WaitingArea,
97
-      Popover
98
-      // Group,
99
-      // Cell
105
+    searchWithKeyword: function () {
106
+      this.$refs.search_field.blur()
107
+      this.search_keyword = this.search_input
100 108
     },
101
-
102
-    methods: {
103
-      ClickTab: function (tabIndex) {
104
-        this.index = tabIndex
105
-      },
106
-      searchWithKeyword: function () {
107
-        this.$refs.search_field.blur()
108
-        this.search_keyword = this.search_input
109
-      },
110
-      clearKeyword: function () {
111
-        this.search_input = ''
112
-        this.search_keyword = ''
113
-      },
114
-    }, created () {
115
-      var index = getDialysisOrWaitSelectedConfig()
116
-      console.log(index)
117
-      if (index != null){
118
-        this.index = index
119
-      }
109
+    clearKeyword: function () {
110
+      this.search_input = ''
111
+      this.search_keyword = ''
112
+    }
113
+  },
114
+  created () {
115
+    var index = getDialysisOrWaitSelectedConfig()
116
+    console.log(index)
117
+    if (index != null) {
118
+      this.index = index
120 119
     }
121 120
   }
121
+}
122 122
 </script>
123 123
 
124 124
 <style style="stylesheet/scss" lang="scss" scoped>
@@ -177,4 +177,3 @@
177 177
   border: 1px solid #fff;
178 178
   }
179 179
 </style>
180
-

+ 99 - 102
src/pages/main/dialog/LongDialog.vue View File

@@ -231,52 +231,52 @@
231 231
 </template>
232 232
 
233 233
 <script>
234
-import LongDialogMenu from "./subMenu/LongDialogMenu";
235
-import { createPatientDialysisSolution } from "@/api/patient";
236
-import { Toast } from "vant";
234
+import LongDialogMenu from './subMenu/LongDialogMenu';
235
+import { createPatientDialysisSolution } from '@/api/patient';
236
+import { Toast } from 'vant';
237 237
 
238 238
 export default {
239
-  name: "LongDialog",
239
+  name: 'LongDialog',
240 240
   components: {
241 241
     LongDialogMenu
242 242
   },
243 243
   methods: {
244
-    handleDialyser(item) {
245
-      this.showObj.paden_show = true;
244
+    handleDialyser (item) {
245
+      this.showObj.paden_show = true
246 246
     },
247
-    showModel() {
248
-      this.showObj.mode_show[0] = true;
249
-      this.showObj.paden_show = false;
247
+    showModel () {
248
+      this.showObj.mode_show[0] = true
249
+      this.showObj.paden_show = false
250 250
     },
251
-    showQi() {
252
-      this.showObj.mode_show[1] = true;
253
-      this.showObj.paden_show = false;
251
+    showQi () {
252
+      this.showObj.mode_show[1] = true
253
+      this.showObj.paden_show = false
254 254
     },
255
-    showMenu(index) {
256
-      this.showObj.mode_show[index] = true;
257
-      this.showObj.paden_show = false;
255
+    showMenu (index) {
256
+      this.showObj.mode_show[index] = true
257
+      this.showObj.paden_show = false
258 258
     },
259 259
 
260
-    submitSolution() {
261
-      this.dialysisSolution.mode = this.dialysisSolution.mode_id;
260
+    submitSolution () {
261
+      this.dialysisSolution.mode = this.dialysisSolution.mode_id
262 262
       createPatientDialysisSolution(
263 263
         this.patient.id,
264 264
         this.dialysisSolution
265 265
       ).then(response => {
266 266
         if (response.data.state == 0) {
267
-          Toast.fail(response.data.msg);
267
+          Toast.fail(response.data.msg)
268 268
           // this.$toast({message: response.data.msg});
269
-          return false;
269
+          return false
270 270
         } else {
271
-          Toast.success("创建成功");
271
+          Toast.success('创建成功')
272 272
           // this.$toast({message: "创建成功"});
273
-          this.$emit("longSolution");
273
+          this.$emit('longSolution')
274 274
           for (const key in response.data.data.solution) {
275
-            this.solution_prop[key] = response.data.data.solution[key];
275
+            this.solution_prop[key] = response.data.data.solution[key]
276 276
           }
277 277
           // this.solution_prop = response.data.data.solution
278 278
         }
279
-      });
279
+      })
280 280
     }
281 281
   },
282 282
 
@@ -289,14 +289,14 @@ export default {
289 289
     },
290 290
     machines_prop: {
291 291
       type: Array,
292
-      default: function() {
293
-        return new Array();
292
+      default: function () {
293
+        return new Array()
294 294
       }
295 295
     }
296 296
   },
297
-  data() {
297
+  data () {
298 298
     return {
299
-      doctor: "",
299
+      doctor: '',
300 300
       showObj: {
301 301
         mode_show: {
302 302
           0: false,
@@ -319,108 +319,108 @@ export default {
319 319
 
320 320
       anticoagulant: {
321 321
         id: 0,
322
-        name: "",
322
+        name: '',
323 323
         type: 1,
324 324
         shouji: 1,
325 325
         weichi: 1,
326 326
         zongliang: 1,
327 327
         gaimingcheng: -1,
328 328
         gaijiliang: -1,
329
-        shouji_unit: "mg",
330
-        weichi_unit: "mg/h",
331
-        zongliang_unit: "mg",
332
-        gaimingcheng_unit: "",
333
-        gaijiliang_unit: ""
329
+        shouji_unit: 'mg',
330
+        weichi_unit: 'mg/h',
331
+        zongliang_unit: 'mg',
332
+        gaimingcheng_unit: '',
333
+        gaijiliang_unit: ''
334 334
       },
335 335
       patient: {
336 336
         id: 0
337 337
       },
338 338
       dialysisSolution: {
339 339
         id: 0,
340
-        mode: "",
341
-        mode_id: "",
342
-        mode_name: "",
343
-        dialysis_duration: "",
344
-        hemodialysis_machine: "",
345
-        perfusion_apparatus: "",
346
-        perfusion_apparatus_name: "",
347
-        blood_flow_volume: "",
348
-        dewater: "",
340
+        mode: '',
341
+        mode_id: '',
342
+        mode_name: '',
343
+        dialysis_duration: '',
344
+        hemodialysis_machine: '',
345
+        perfusion_apparatus: '',
346
+        perfusion_apparatus_name: '',
347
+        blood_flow_volume: '',
348
+        dewater: '',
349 349
         displace_liqui: 0,
350
-        replacement_way: "",
351
-        replacement_way_name: "",
352
-        anticoagulant: "",
353
-        anticoagulant_name: "",
354
-        anticoagulant_shouji: "",
355
-        anticoagulant_weichi: "",
356
-        anticoagulant_zongliang: "",
357
-        anticoagulant_gaimingcheng: "",
358
-        anticoagulant_gaijiliang: "",
359
-        kalium: "",
360
-        sodium: "",
361
-        calcium: "",
362
-        bicarbonate: "",
363
-        glucose: "",
364
-        dry_weight: "",
365
-        dialysate_flow: "",
366
-        dialysate_temperature: "",
367
-        conductivity: "",
368
-        doctor: "",
369
-        remark: ""
350
+        replacement_way: '',
351
+        replacement_way_name: '',
352
+        anticoagulant: '',
353
+        anticoagulant_name: '',
354
+        anticoagulant_shouji: '',
355
+        anticoagulant_weichi: '',
356
+        anticoagulant_zongliang: '',
357
+        anticoagulant_gaimingcheng: '',
358
+        anticoagulant_gaijiliang: '',
359
+        kalium: '',
360
+        sodium: '',
361
+        calcium: '',
362
+        bicarbonate: '',
363
+        glucose: '',
364
+        dry_weight: '',
365
+        dialysate_flow: '',
366
+        dialysate_temperature: '',
367
+        conductivity: '',
368
+        doctor: '',
369
+        remark: ''
370 370
       }
371
-    };
371
+    }
372 372
   },
373 373
   watch: {
374
-    "dialysisSolution.anticoagulant": function() {
375
-      var thismode = parseInt(this.dialysisSolution.anticoagulant);
374
+    'dialysisSolution.anticoagulant': function () {
375
+      var thismode = parseInt(this.dialysisSolution.anticoagulant)
376 376
       if (isNaN(thismode) || thismode <= 0) {
377
-        return false;
377
+        return false
378 378
       }
379 379
       if (
380
-        typeof this.anticoagulantsConfit[thismode] == "undefined" ||
380
+        typeof this.anticoagulantsConfit[thismode] === 'undefined' ||
381 381
         this.anticoagulantsConfit[thismode] == null
382 382
       ) {
383
-        return false;
383
+        return false
384 384
       }
385
-      this.anticoagulant = this.anticoagulantsConfit[thismode];
386
-      this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[thismode].name;
385
+      this.anticoagulant = this.anticoagulantsConfit[thismode]
386
+      this.dialysisSolution.anticoagulant_name = this.anticoagulantsConfit[thismode].name
387 387
     },
388
-    "dialysisSolution.hemodialysis_machine":function(){
389
-      var machine = parseInt(this.dialysisSolution.hemodialysis_machine);
388
+    'dialysisSolution.hemodialysis_machine': function () {
389
+      var machine = parseInt(this.dialysisSolution.hemodialysis_machine)
390 390
       if (isNaN(machine) || machine <= 0) {
391
-        return;
391
+        return
392 392
       }
393 393
       for (let index = 0; index < this.dialyserList.length; index++) {
394 394
         if (machine == this.dialyserList[index].id) {
395
-          this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[index].name;
395
+          this.dialysisSolution.hemodialysis_machine_name = this.dialyserList[index].name
396 396
           break;
397 397
         }
398 398
       }
399 399
     },
400
-    "dialysisSolution.perfusion_apparatus": function(){
401
-      var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus);
402
-      if (isNaN(apparatus) || apparatus<=0) {
403
-        return false;
400
+    'dialysisSolution.perfusion_apparatus': function () {
401
+      var apparatus = parseInt(this.dialysisSolution.perfusion_apparatus)
402
+      if (isNaN(apparatus) || apparatus <= 0) {
403
+        return false
404 404
       }
405 405
       for (let index = 0; index < this.perfusion_apparatus.length; index++) {
406 406
         if (apparatus == this.perfusion_apparatus[index].id) {
407
-          this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[index].name;
407
+          this.dialysisSolution.perfusion_apparatus_name = this.perfusion_apparatus[index].name
408 408
           break;
409 409
         }
410 410
       }
411 411
     },
412
-    "dialysisSolution.replacement_way": function(){
413
-      var way = parseInt(this.dialysisSolution.replacement_way);
414
-      if (isNaN(way) || way<=0) {
415
-        return false;
412
+    'dialysisSolution.replacement_way': function () {
413
+      var way = parseInt(this.dialysisSolution.replacement_way)
414
+      if (isNaN(way) || way <= 0) {
415
+        return false
416 416
       }
417 417
       for (let index = 0; index < this.replacementWays.length; index++) {
418 418
         if (way == this.replacementWays[index].id) {
419
-          this.dialysisSolution.replacement_way_name = this.replacementWays[index].name;
419
+          this.dialysisSolution.replacement_way_name = this.replacementWays[index].name
420 420
           break;
421 421
         }
422 422
       }
423
-    },
423
+    }
424 424
   },
425 425
   // computed:{
426 426
   //   dialysisSolution:function(){
@@ -437,34 +437,32 @@ export default {
437 437
   //     }
438 438
   //   }
439 439
 
440
-
441 440
   // },
442
-  created() {
443
-    this.doctor = this.$store.getters.user.user.user_name;
444
-    this.modeOptions = this.$store.getters.treatment_mode;
445
-    this.perfusion_apparatus = this.$store.getters.perfusion_apparatus;
446
-    this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
447
-    this.replacementWays = this.$store.getters.replacement_ways;
441
+  created () {
442
+    this.doctor = this.$store.getters.user.user.user_name
443
+    this.modeOptions = this.$store.getters.treatment_mode
444
+    this.perfusion_apparatus = this.$store.getters.perfusion_apparatus
445
+    this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit
446
+    this.replacementWays = this.$store.getters.replacement_ways
448 447
 
449 448
     for (var modeOne in this.modeOptions) {
450
-      this.modeList.push(this.modeOptions[modeOne]);
449
+      this.modeList.push(this.modeOptions[modeOne])
451 450
     }
452 451
     for (var one in this.anticoagulantsConfit) {
453
-      this.anticoagulantsConfitList.push(this.anticoagulantsConfit[one]);
452
+      this.anticoagulantsConfitList.push(this.anticoagulantsConfit[one])
454 453
     }
455 454
 
456
-    this.patient = this.patient_prop;
455
+    this.patient = this.patient_prop
457 456
 
458 457
     // console.log("this.solution_prop",this.solution_prop);
459 458
     if (this.solution_prop != null && this.solution_prop.id != '') {
460 459
       for (const key in this.solution_prop) {
461
-        this.dialysisSolution[key] = this.solution_prop[key];
460
+        this.dialysisSolution[key] = this.solution_prop[key]
462 461
       }
463 462
     }
464 463
 
465
-
466
-    this.dialyserList = this.machines_prop;
467
-  },
464
+    this.dialyserList = this.machines_prop
465
+  }
468 466
   // data() {
469 467
   //   return {
470 468
   //     show_two_menu: false
@@ -486,7 +484,7 @@ export default {
486 484
   //     this.show_two_menu = true;
487 485
   //   }
488 486
   // }
489
-};
487
+}
490 488
 </script>
491 489
 
492 490
 <style style="stylesheet/scss" lang="scss" scoped>
@@ -537,7 +535,7 @@ export default {
537 535
   max-height: 10.6rem;
538 536
   min-height: 5rem;
539 537
   overflow-y: scroll;
540
-  
538
+
541 539
   ul {
542 540
     li {
543 541
       line-height: 1rem;
@@ -545,4 +543,3 @@ export default {
545 543
   }
546 544
 }
547 545
 </style>
548
-

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


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

@@ -323,16 +323,16 @@
323 323
 </template>
324 324
 
325 325
 <script>
326
-  import CheckBoxSubMenu from './subMenu/checkBoxSubMenu'
327
-  import MultipleSubMenu from './subMenu/multipleSubMenu'
328
-  import {commitDialysisPrescription, CreateGroupAdvice, postSign, postSolution} from '@/api/dialysis'
326
+import CheckBoxSubMenu from './subMenu/checkBoxSubMenu'
327
+import MultipleSubMenu from './subMenu/multipleSubMenu'
328
+import {commitDialysisPrescription, CreateGroupAdvice, postSign, postSolution} from '@/api/dialysis'
329 329
 
330
-  import {Toast} from 'vant'
331
-  import {getDataConfig} from '@/utils/data'
330
+import {Toast} from 'vant'
331
+import {getDataConfig} from '@/utils/data'
332 332
 
333
-  import {parseTime} from '@/utils'
334
-  import LongAdviceSubMenu from './subMenu/LongAdviceSubMenu'
335
-  import MsgTip from './subMenu/MsgTip'
333
+import {parseTime} from '@/utils'
334
+import LongAdviceSubMenu from './subMenu/LongAdviceSubMenu'
335
+import MsgTip from './subMenu/MsgTip'
336 336
 
337 337
   export default {
338 338
     name: 'PrescriptionDialog',
@@ -426,8 +426,8 @@
426 426
           result: [],
427 427
           operators: [],
428 428
 
429
-        },
430
-        is_show: false,
429
+      },
430
+      is_show: false,
431 431
 
432 432
         perfusion_apparatus: {},
433 433
         replacementWays: [],
@@ -513,7 +513,9 @@
513 513
           gaimingcheng_unit: '',
514 514
           gaijiliang_unit: ''
515 515
         },
516
-
516
+        zhiShow: true,
517
+        totalShow: true,
518
+        huShow: true,
517 519
         propForm: {
518 520
           title: '',
519 521
           list: [],
@@ -897,6 +899,21 @@
897 899
             treatment_mode_name = treatment_mode[keys].name
898 900
           }
899 901
         }
902
+      for (let keys in treatment_mode) {
903
+        if (treatment_mode[keys].id == val) {
904
+          treatment_mode_name = treatment_mode[keys].name
905
+          console.log('这是什么', treatment_mode[keys].name)
906
+          if (treatment_mode_name == 'HD') {
907
+            this.zhiShow = false
908
+            this.totalShow = false
909
+            this.huShow = false
910
+          } else {
911
+            this.zhiShow = true
912
+            this.totalShow = true
913
+            this.huShow = true
914
+          }
915
+        }
916
+      }
900 917
 
901 918
         return treatment_mode_name
902 919
       },

+ 27 - 26
src/router/index.js View File

@@ -18,7 +18,7 @@ export default new Router({
18 18
     {
19 19
       path: '/main',
20 20
       name: 'main',
21
-      component: () => import('@/pages/main/index'),
21
+      component: () => import('@/pages/main/index')
22 22
     },
23 23
     {
24 24
       path: '/details',
@@ -26,45 +26,46 @@ export default new Router({
26 26
       component: () => import('@/pages/main/DetailsPage')
27 27
     },
28 28
     {
29
-      path: "/monitoring",
30
-      name: "monitorPage",
31
-      component: () => import("@/pages/monitoring/index")
29
+      path: '/monitoring',
30
+      name: 'monitorPage',
31
+      component: () => import('@/pages/monitoring/index')
32 32
 
33 33
     },
34 34
     {
35
-      path: "/my",
36
-      name: "my",
37
-      component: () => import("@/pages/personal/index")
35
+      path: '/my',
36
+      name: 'my',
37
+      component: () => import('@/pages/personal/index')
38 38
     },
39 39
     {
40
-      path: "/advice",
41
-      name: "doctorAdvice",
42
-      component: () => import("@/pages/advice/index")
40
+      path: '/advice',
41
+      name: 'doctorAdvice',
42
+      component: () => import('@/pages/advice/index')
43 43
     },
44 44
     {
45
-      path: "/EditPersonal",
46
-      name: "EditPersonal",
47
-      component: () => import("@/pages/personal/EditPersonal")
45
+      path: '/EditPersonal',
46
+      name: 'EditPersonal',
47
+      component: () => import('@/pages/personal/EditPersonal')
48 48
     },
49 49
     {
50
-      path: "/ElectronicSignature",
51
-      name: "ElectronicSignature",
52
-      component: () => import("@/pages/personal/ElectronicSignature")
50
+      path: '/ElectronicSignature',
51
+      name: 'ElectronicSignature',
52
+      component: () => import('@/pages/personal/ElectronicSignature')
53 53
     },
54 54
     {
55
-      path: "/Print",
56
-      name: "Print",
57
-      component: () => import("@/pages/main/PrintIndex")
55
+      path: '/Print',
56
+      name: 'Print',
57
+      component: () => import('@/pages/main/PrintIndex')
58 58
     },
59 59
     {
60
-      path: "/add_urgent_schedule",
61
-      name: "AddUrgentSchedule",
62
-      component: () => import("@/pages/main/add_urgent_schedule")
60
+      path: '/add_urgent_schedule',
61
+      name: 'AddUrgentSchedule',
62
+      component: () => import('@/pages/main/add_urgent_schedule')
63 63
     },
64 64
     {
65
-      path: "/Prints",
66
-      name: "Prints",
67
-      component: () => import("@/pages/main/Print")
68
-    }
65
+      path: '/Prints',
66
+      name: 'Prints',
67
+      component: () => import('@/pages/main/Print')
68
+    },
69
+
69 70
   ]
70 71
 })