Browse Source

页面返回位置问题

xiaoming_global 5 years ago
parent
commit
3efaa68aec

+ 8 - 2
src/App.vue View File

@@ -7,7 +7,7 @@
7 7
 
8 8
 <script>
9 9
 export default {
10
-  name: "App",
10
+  name: 'App',
11 11
   provide () {
12 12
     return {
13 13
       reload: this.reload
@@ -25,9 +25,15 @@ export default {
25 25
         this.isRouterAlive = true
26 26
       })
27 27
     }
28
+  },
29
+  watch: {
30
+    '$route': function (to, from) {
31
+      document.body.scrollTop = 0
32
+      document.documentElement.scrollTop = 0
33
+    }
28 34
   }
29 35
 
30
-};
36
+}
31 37
 </script>
32 38
 
33 39
 <style>

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

@@ -16,6 +16,7 @@
16 16
               }}
17 17
               <span class="iconfont">&#xe74a;</span>
18 18
             </li>
19
+
19 20
             <div class="popover-demo-content">
20 21
               <ul>
21 22
                 <li
@@ -59,12 +60,15 @@
59 60
             {{ selected_date_str }}
60 61
             <span class="iconfont">&#xe74a;</span>
61 62
           </li>
63
+
62 64
           <li @click="mypatient()">
63 65
             我的病人
64 66
             <span class="iconfont">&#xe74a;</span>
65 67
           </li>
68
+
66 69
         </ul>
67 70
       </div>
71
+
68 72
       <div class="stateBox">
69 73
         <div v-for="(item, index) in filtedScheduals" :key="index">
70 74
           <h2 class="title">{{ item.zone_name }}</h2>
@@ -265,7 +269,7 @@ export default {
265 269
 
266 270
   created () {
267 271
     this.user_id = this.$store.getters.user.user.id
268
-    
272
+
269 273
     var storedata = this.$store.getters.scheduals
270 274
     var scheduals = storedata.scheduals
271 275
     if (Object.keys(storedata).length > 0) {
@@ -381,7 +385,7 @@ export default {
381 385
 
382 386
             // console.log(resp.data)
383 387
             var scheduals = resp.data.scheduals
384
-            this.$store.dispatch("SetScheduals",{scheduals:scheduals})
388
+            this.$store.dispatch('SetScheduals', {scheduals: scheduals})
385 389
             var zoneMap = {}
386 390
             var schedualMap = {}
387 391
             for (let index = 0; index < scheduals.length; index++) {

+ 193 - 197
src/pages/main/PatientBox.vue View File

@@ -35,217 +35,214 @@
35 35
 </template>
36 36
 
37 37
 <script>
38
-  import {parseTime} from '@/utils'
39
-  import {jsGetAge} from '@/utils/tools'
40
-  import {
41
-    setDialysisOrWaitSelectedConfig
42
-  } from '@/utils/data_config'
43
-  export default {
44
-    name: 'PatientBox',
45
-    props: {
46
-      patients: Array
47
-    },
48
-    data () {
49
-      return {}
50
-    },
51
-    created(){
52
-      console.log("11111")
53
-      console.log(this.patients)
54
-    },
55
-    methods: {
56
-      getUnReadNum: function (schedual) {
57
-        if (schedual.doctor_advice != null) {
58
-          let doctorAdvice = []
59
-          for (let i = 0; i < schedual.doctor_advice.length; i++) {
60
-            if (schedual.doctor_advice[i].execution_state == 2) {
61
-              doctorAdvice.push(schedual.doctor_advice[i])
62
-            }
38
+import {parseTime} from '@/utils'
39
+import {jsGetAge} from '@/utils/tools'
40
+import {
41
+  setDialysisOrWaitSelectedConfig
42
+} from '@/utils/data_config'
43
+export default {
44
+  name: 'PatientBox',
45
+  props: {
46
+    patients: Array
47
+  },
48
+  data () {
49
+    return {}
50
+  },
51
+  created () {
52
+    console.log('11111')
53
+    console.log(this.patients)
54
+  },
55
+  methods: {
56
+    getUnReadNum: function (schedual) {
57
+      if (schedual.doctor_advice != null) {
58
+        let doctorAdvice = []
59
+        for (let i = 0; i < schedual.doctor_advice.length; i++) {
60
+          if (schedual.doctor_advice[i].execution_state == 2) {
61
+            doctorAdvice.push(schedual.doctor_advice[i])
63 62
           }
64
-          const sorted = this.groupBy(doctorAdvice, function (item) {
65
-            return [item.groupno]
66
-          })
67
-          return sorted.length
68 63
         }
69
-      },
70
-      getStatus: function (schedual) {
71
-        var isShowDot = false
72
-        if (schedual.doctor_advice != null) {
73
-          for (let i = 0; i < schedual.doctor_advice.length; i++) {
74
-            if (schedual.doctor_advice[i].execution_state == 2) {
75
-              isShowDot = true
76
-            }
64
+        const sorted = this.groupBy(doctorAdvice, function (item) {
65
+          return [item.groupno]
66
+        })
67
+        return sorted.length
68
+      }
69
+    },
70
+    getStatus: function (schedual) {
71
+      var isShowDot = false
72
+      if (schedual.doctor_advice != null) {
73
+        for (let i = 0; i < schedual.doctor_advice.length; i++) {
74
+          if (schedual.doctor_advice[i].execution_state == 2) {
75
+            isShowDot = true
77 76
           }
78
-          return isShowDot
79
-
80
-        } else {
81
-          return false
82
-        }
83
-      },
84
-      stateColor: function (schedual) {
85
-        var state = this.computeState(schedual)
86
-        if (state == 1) {
87
-          return 'blue'
88
-        } else if (state == 2) {
89
-          return 'gray'
90
-        } else if (state == 3) {
91
-          return 'red'
92
-        } else if (state == 5){
93
-          return "green1";
94
-        } else if (state == 6){
95
-          return "green2";
96
-        }else {
97
-          return 'blue'
98
-        }
99
-      },
100
-      functionColor: function (schedual) {
101
-        var state = this.computeState(schedual)
102
-        if (state == 1 || state == 3) {
103
-          return 'blue'
104
-        } else if (state == 2) {
105
-          return 'gray'
106
-        } else {
107
-          return 'blue'
108
-        }
109
-      },
110
-      borderColor: function (schedual) {
111
-        var yc = this.isAbnormal(schedual)
112
-        if (yc == true) {
113
-          return 'red'
114
-        } else {
115
-          return 'gray'
116
-        }
117
-      },
118
-      stateText: function (schedual) {
119
-        var state = this.computeState(schedual)
120
-        if (state == 1) {
121
-          return '已上机'
122
-        } else if (state == 2) {
123
-          return '已下机'
124
-        } else if (state == 3) {
125
-          return '监测中'
126
-        }else if (state == 5) {
127
-          return '待称重'
128
-        }else if (state == 6) {
129
-          return '待开处方'
130
-        } else {
131
-          // return schedual.patient.gender == 1 ? "男" : "女"
132
-          return '未上机'
133
-        }
134
-      },
135
-      computeState: function (schedual) {
136
-        if (schedual.assessment_before_dislysis == null ||schedual.assessment_before_dislysis.weight_before == 0){
137
-          // 未签到称重
138
-          return 5
139
-        }
140
-        if(schedual.prescription == null || schedual.prescription.creater == 0){
141
-          // 未确认处方
142
-          return 6
143 77
         }
78
+        return isShowDot
79
+      } else {
80
+        return false
81
+      }
82
+    },
83
+    stateColor: function (schedual) {
84
+      var state = this.computeState(schedual)
85
+      if (state == 1) {
86
+        return 'blue'
87
+      } else if (state == 2) {
88
+        return 'gray'
89
+      } else if (state == 3) {
90
+        return 'red'
91
+      } else if (state == 5) {
92
+        return 'green1'
93
+      } else if (state == 6) {
94
+        return 'green2'
95
+      } else {
96
+        return 'blue'
97
+      }
98
+    },
99
+    functionColor: function (schedual) {
100
+      var state = this.computeState(schedual)
101
+      if (state == 1 || state == 3) {
102
+        return 'blue'
103
+      } else if (state == 2) {
104
+        return 'gray'
105
+      } else {
106
+        return 'blue'
107
+      }
108
+    },
109
+    borderColor: function (schedual) {
110
+      var yc = this.isAbnormal(schedual)
111
+      if (yc == true) {
112
+        return 'red'
113
+      } else {
114
+        return 'gray'
115
+      }
116
+    },
117
+    stateText: function (schedual) {
118
+      var state = this.computeState(schedual)
119
+      if (state == 1) {
120
+        return '已上机'
121
+      } else if (state == 2) {
122
+        return '已下机'
123
+      } else if (state == 3) {
124
+        return '监测中'
125
+      } else if (state == 5) {
126
+        return '待称重'
127
+      } else if (state == 6) {
128
+        return '待开处方'
129
+      } else {
130
+        // return schedual.patient.gender == 1 ? "男" : "女"
131
+        return '未上机'
132
+      }
133
+    },
134
+    computeState: function (schedual) {
135
+      if (schedual.assessment_before_dislysis == null || schedual.assessment_before_dislysis.weight_before == 0) {
136
+        // 未签到称重
137
+        return 5
138
+      }
139
+      if (schedual.prescription == null || schedual.prescription.creater == 0) {
140
+        // 未确认处方
141
+        return 6
142
+      }
144 143
 
145
-        if (schedual.dialysis_order == null) {
146
-          // 未上机
147
-          return 4
148
-        } else if (schedual.dialysis_order.stage == 2) {
149
-          // 已下机
150
-          return 2
151
-        } else if (
152
-          schedual.dialysis_order.stage == 1 &&
144
+      if (schedual.dialysis_order == null) {
145
+        // 未上机
146
+        return 4
147
+      } else if (schedual.dialysis_order.stage == 2) {
148
+        // 已下机
149
+        return 2
150
+      } else if (
151
+        schedual.dialysis_order.stage == 1 &&
153 152
           schedual.monitoring_records != null &&
154 153
           schedual.monitoring_records.length > 1
155
-        ) {
156
-          // 监测中
157
-          return 3
158
-        } else {
159
-          return 1
160
-        }
161
-      },
154
+      ) {
155
+        // 监测中
156
+        return 3
157
+      } else {
158
+        return 1
159
+      }
160
+    },
162 161
 
163
-      orderState: function (schedual) {
164
-        if (schedual.dialysis_order == null) {
165
-          // 未上机
166
-          return 4
167
-        } else if (schedual.dialysis_order.stage == 2) {
168
-          // 已下机
169
-          return 2
170
-        } else if (
171
-          schedual.dialysis_order.stage == 1 &&
162
+    orderState: function (schedual) {
163
+      if (schedual.dialysis_order == null) {
164
+        // 未上机
165
+        return 4
166
+      } else if (schedual.dialysis_order.stage == 2) {
167
+        // 已下机
168
+        return 2
169
+      } else if (
170
+        schedual.dialysis_order.stage == 1 &&
172 171
           schedual.monitoring_records != null &&
173 172
           schedual.monitoring_records.length > 1
174
-        ) {
175
-          // 监测中
176
-          return 3
177
-        } else {
178
-          return 1
179
-        }
180
-      },
181
-      isAbnormal: function (schedual) {
182
-        return false // schedual.yc;
183
-      },
184
-      timeTypeText: function (schedual) {
185
-        if (schedual.schedule_type == 1) {
186
-          return '上午'
187
-        } else if (schedual.schedule_type == 2) {
188
-          return '下午'
189
-        } else {
190
-          return '晚上'
191
-        }
192
-      },
193
-      genderText: function (schedual) {
194
-        if (schedual.patient.gender == 0) {
195
-          return '未知'
196
-        } else if (schedual.patient.gender == 1) {
197
-          return '男'
198
-        } else {
199
-          return '女'
200
-        }
201
-      },
202
-      age: function (schedual) {
203
-        if (schedual.patient.age == 0) {
204
-
205
-          return jsGetAge(parseTime(schedual.patient.birthday, '{y}-{m}-{d}'), '-')
206
-
207
-        } else {
173
+      ) {
174
+        // 监测中
175
+        return 3
176
+      } else {
177
+        return 1
178
+      }
179
+    },
180
+    isAbnormal: function (schedual) {
181
+      return false // schedual.yc;
182
+    },
183
+    timeTypeText: function (schedual) {
184
+      if (schedual.schedule_type == 1) {
185
+        return '上午'
186
+      } else if (schedual.schedule_type == 2) {
187
+        return '下午'
188
+      } else {
189
+        return '晚上'
190
+      }
191
+    },
192
+    genderText: function (schedual) {
193
+      if (schedual.patient.gender == 0) {
194
+        return '未知'
195
+      } else if (schedual.patient.gender == 1) {
196
+        return '男'
197
+      } else {
198
+        return '女'
199
+      }
200
+    },
201
+    age: function (schedual) {
202
+      if (schedual.patient.age == 0) {
203
+        return jsGetAge(parseTime(schedual.patient.birthday, '{y}-{m}-{d}'), '-')
204
+      } else {
205
+        return schedual.patient.age
206
+      }
208 207
 
209
-          return schedual.patient.age
210
-        }
208
+      // var now = new Date();
209
+      // var nowYear = parseTime(now, "{y}");
210
+      // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
211
+      // // console.log(nowYear)
212
+      // // console.log(birthdayYear)
213
+      // return nowYear - birthdayYear;
214
+    },
215
+    groupBy (array, f) {
216
+      const groups = {}
217
+      array.forEach(function (o) {
218
+        const group = JSON.stringify(f(o))
219
+        groups[group] = groups[group] || []
220
+        groups[group].push(o)
221
+      })
222
+      return Object.keys(groups).map(function (group) {
223
+        return groups[group]
224
+      })
225
+    },
226
+    detailAction: function (schedual) {
227
+      if (schedual.dialysis_order != null) {
228
+        setDialysisOrWaitSelectedConfig(1)
229
+      } else {
230
+        setDialysisOrWaitSelectedConfig(0)
231
+      }
211 232
 
212
-        // var now = new Date();
213
-        // var nowYear = parseTime(now, "{y}");
214
-        // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
215
-        // // console.log(nowYear)
216
-        // // console.log(birthdayYear)
217
-        // return nowYear - birthdayYear;
218
-      }, groupBy (array, f) {
219
-        const groups = {}
220
-        array.forEach(function (o) {
221
-          const group = JSON.stringify(f(o))
222
-          groups[group] = groups[group] || []
223
-          groups[group].push(o)
224
-        })
225
-        return Object.keys(groups).map(function (group) {
226
-          return groups[group]
227
-        })
228
-      },
229
-      detailAction: function (schedual) {
230
-        if(schedual.dialysis_order != null){
231
-          setDialysisOrWaitSelectedConfig(1)
232
-        }else{
233
-          setDialysisOrWaitSelectedConfig(0)
233
+      var patient_id = schedual.patient_id
234
+      var date = schedual.schedule_date
235
+      this.$router.push({
236
+        path: '/details',
237
+        query: {
238
+          patient_id: patient_id,
239
+          date: date,
240
+          patient_name: schedual.patient.name
234 241
         }
235
-
236
-        var patient_id = schedual.patient_id
237
-        var date = schedual.schedule_date
238
-        this.$router.push({
239
-          path: '/details',
240
-          query: {
241
-            patient_id: patient_id,
242
-            date: date,
243
-            patient_name: schedual.patient.name
244
-          }
245
-        })
246
-      }
242
+      })
247 243
     }
248 244
   }
245
+}
249 246
 </script>
250 247
 
251 248
 <style style="stylesheet/scss" lang="scss" scoped>
@@ -393,4 +390,3 @@
393 390
     font-size: 14px;
394 391
   }
395 392
 </style>
396
-

File diff suppressed because it is too large
+ 1016 - 1014
src/pages/main/today/TodayTab.vue


+ 109 - 104
src/pages/main/today/acceptsAssessment.vue View File

@@ -55,8 +55,6 @@
55 55
           <span class="content">{{this.record.sick_condition_other}} </span>
56 56
         </li>
57 57
 
58
-
59
-
60 58
         <li style="height: 0.6rem;"  v-if="isShow('摄入量')">
61 59
           <label>摄入量:</label>
62 60
           <span class="content">{{intakes}}</span>
@@ -64,7 +62,6 @@
64 62
 
65 63
       <!-- </ul>
66 64
 
67
-
68 65
       <ul > -->
69 66
         <li style="height: 0.6rem;" v-if="isShow('营养状况')">
70 67
           <label>营养状况:</label>
@@ -85,74 +82,79 @@
85 82
 
86 83
       </ul>
87 84
 
88
-
89 85
     </div>
90 86
   </div>
91 87
 </template>
92 88
 
93 89
 <script>
94 90
 export default {
95
-  name: "AcceptsAssessment",
96
-  data() {
91
+  name: 'AcceptsAssessment',
92
+  data () {
97 93
     return {
98
-      title: "接诊评估 ",
94
+      title: '接诊评估 ',
99 95
 
100 96
       ways: {
101
-        "1": "步行",
102
-        "2": "扶行",
103
-        "3": "轮椅",
104
-        "4": "平车",
97
+        '1': '步行',
98
+        '2': '扶行',
99
+        '3': '轮椅',
100
+        '4': '平车'
105 101
       },
106 102
       conditions: {
107
-        "1": "住院",
108
-        "2": "门诊",
109
-        "3": "手术期",
103
+        '1': '住院',
104
+        '2': '门诊',
105
+        '3': '手术期'
110 106
       },
111 107
       consciousnesses: {
112
-        "1": "清醒",
113
-        "2": "嗜睡",
114
-        "3": "昏迷",
115
-        "4": "模糊",
108
+        '1': '清醒',
109
+        '2': '嗜睡',
110
+        '3': '昏迷',
111
+        '4': '模糊'
116 112
       },
117 113
       appetites: {
118
-        "1": "正常",
119
-        "2": "减退",
120
-        "3": "恶心",
121
-        "4": "呕吐",
122
-        "5": "腹泻",
114
+        '1': '正常',
115
+        '2': '减退',
116
+        '3': '恶心',
117
+        '4': '呕吐',
118
+        '5': '腹泻'
123 119
       },
124 120
       postures: {
125
-        "1": "自动体位",
126
-        "2": "平卧位",
127
-        "3": "半卧位",
128
-        "4": "端坐位",
129
-        "5": "躁动不安",
130
-      }, sick_condition: {
131
-        "1": "一般",
132
-        "2": "重",
133
-        "3": "危",
134
-      }, danger_level: {
135
-        "1": "无",
136
-        "2": "低风险",
137
-        "3": "中度风险",
138
-        "4": "高风险",
121
+        '1': '自动体位',
122
+        '2': '平卧位',
123
+        '3': '半卧位',
124
+        '4': '端坐位',
125
+        '5': '躁动不安'
126
+      },
127
+sick_condition: {
128
+        '1': '一般',
129
+        '2': '重',
130
+        '3': '危'
131
+      },
132
+danger_level: {
133
+        '1': '无',
134
+        '2': '低风险',
135
+        '3': '中度风险',
136
+        '4': '高风险'
139 137
 
140
-      }, intake: {
141
-        "1": "正常",
142
-        "2": "减少",
143
-      },nutrition: {
144
-        "1": "正常",
145
-        "2": "营养不良",
146
-      },psychological_assessment: {
147
-        "1": "正常",
148
-        "2": "异常",
149
-      },precautionss: {
150
-        "1": "镇定剂",
151
-        "2": "约束带",
152
-        "3": "床栏",
153
-        "4": "加强宣教",
138
+      },
139
+intake: {
140
+        '1': '正常',
141
+        '2': '减少'
142
+      }, 
143
+nutrition: {
144
+        '1': '正常',
145
+        '2': '营养不良'
146
+      }, 
147
+psychological_assessment: {
148
+        '1': '正常',
149
+        '2': '异常'
150
+      }, 
151
+precautionss: {
152
+        '1': '镇定剂',
153
+        '2': '约束带',
154
+        '3': '床栏',
155
+        '4': '加强宣教'
154 156
       }
155
-    };
157
+    }
156 158
   },
157 159
   props: {
158 160
     record: {
@@ -161,97 +163,100 @@ export default {
161 163
   },
162 164
   computed: {
163 165
 
164
-    way: function() {
165
-      if (this.record == null || this.record.id == "") {
166
-        return ""
166
+    way: function () {
167
+      if (this.record == null || this.record.id == '') {
168
+        return ''
167 169
       } else {
168
-        return this.ways[this.record.way] == undefined ? "" : (this.ways[this.record.way] + "")
170
+        return this.ways[this.record.way] == undefined ? '' : (this.ways[this.record.way] + '')
169 171
       }
170 172
     },
171
-    condition: function() {
172
-      if (this.record == null || this.record.id == "") {
173
-        return ""
173
+    condition: function () {
174
+      if (this.record == null || this.record.id == '') {
175
+        return ''
174 176
       } else {
175
-        return this.conditions[this.record.condition] == undefined ? "" : this.conditions[this.record.condition] + ""
177
+        return this.conditions[this.record.condition] == undefined ? '' : this.conditions[this.record.condition] + ''
176 178
       }
177 179
     },
178
-    consciousness: function() {
179
-      if (this.record == null || this.record.id == "") {
180
-        return ""
180
+    consciousness: function () {
181
+      if (this.record == null || this.record.id == '') {
182
+        return ''
181 183
       } else {
182
-        return this.consciousnesses[this.record.consciousness] == undefined ? "" : this.consciousnesses[this.record.consciousness] + ""
184
+        return this.consciousnesses[this.record.consciousness] == undefined ? '' : this.consciousnesses[this.record.consciousness] + ''
183 185
       }
184 186
     },
185
-    appetite: function() {
186
-      if (this.record == null || this.record.id == "") {
187
-        return ""
187
+    appetite: function () {
188
+      if (this.record == null || this.record.id == '') {
189
+        return ''
188 190
       } else {
189
-        return this.appetites[this.record.appetite] == undefined ? "" : this.appetites[this.record.appetite] + ""
191
+        return this.appetites[this.record.appetite] == undefined ? '' : this.appetites[this.record.appetite] + ''
190 192
       }
191 193
     },
192
-    posture: function() {
193
-      if (this.record == null || this.record.id == "") {
194
-        return ""
194
+    posture: function () {
195
+      if (this.record == null || this.record.id == '') {
196
+        return ''
195 197
       } else {
196
-        return this.postures[this.record.posture] == undefined ? "" : this.postures[this.record.posture] + ""
198
+        return this.postures[this.record.posture] == undefined ? '' : this.postures[this.record.posture] + ''
197 199
       }
198
-    },sickCondition: function() {
199
-      if (this.record == null || this.record.id == "") {
200
-        return ""
200
+    }, 
201
+sickCondition: function () {
202
+      if (this.record == null || this.record.id == '') {
203
+        return ''
201 204
       } else {
202
-        return this.sick_condition[this.record.sick_condition] == undefined ? "" : this.sick_condition[this.record.sick_condition] + ""
205
+        return this.sick_condition[this.record.sick_condition] == undefined ? '' : this.sick_condition[this.record.sick_condition] + ''
203 206
       }
204
-    },dangerLevel: function() {
205
-      if (this.record == null || this.record.id == "") {
206
-        return ""
207
+    }, 
208
+dangerLevel: function () {
209
+      if (this.record == null || this.record.id == '') {
210
+        return ''
207 211
       } else {
208
-        return this.danger_level[this.record.danger_level] == undefined ? "" : this.danger_level[this.record.danger_level] + ""
212
+        return this.danger_level[this.record.danger_level] == undefined ? '' : this.danger_level[this.record.danger_level] + ''
209 213
       }
210
-    },precautions: function() {
211
-      if (this.record == null || this.record.id == "") {
212
-        return ""
214
+    }, 
215
+precautions: function () {
216
+      if (this.record == null || this.record.id == '') {
217
+        return ''
213 218
       } else {
214
-        return this.precautionss[this.record.precaution] == undefined ? "" : this.precautionss[this.record.precaution] + ""
219
+        return this.precautionss[this.record.precaution] == undefined ? '' : this.precautionss[this.record.precaution] + ''
215 220
       }
216
-    },intakes: function() {
217
-      if (this.record == null || this.record.id == "") {
218
-        return ""
221
+    }, 
222
+intakes: function () {
223
+      if (this.record == null || this.record.id == '') {
224
+        return ''
219 225
       } else {
220
-        return this.intake[this.record.intake] == undefined ? "" : this.intake[this.record.intake] + ""
226
+        return this.intake[this.record.intake] == undefined ? '' : this.intake[this.record.intake] + ''
221 227
       }
222
-    },nutritions: function() {
223
-      if (this.record == null || this.record.id == "") {
224
-        return ""
228
+    }, 
229
+nutritions: function () {
230
+      if (this.record == null || this.record.id == '') {
231
+        return ''
225 232
       } else {
226
-        return this.nutrition[this.record.nutrition] == undefined ? "" : this.nutrition[this.record.nutrition] + ""
233
+        return this.nutrition[this.record.nutrition] == undefined ? '' : this.nutrition[this.record.nutrition] + ''
227 234
       }
228
-    },psychologicalAssessment: function() {
229
-      if (this.record == null || this.record.id == "") {
230
-        return ""
235
+    }, 
236
+psychologicalAssessment: function () {
237
+      if (this.record == null || this.record.id == '') {
238
+        return ''
231 239
       } else {
232
-        return this.psychological_assessment[this.record.psychological_assessment] == undefined ? "" : this.psychological_assessment[this.record.psychological_assessment] + ""
240
+        return this.psychological_assessment[this.record.psychological_assessment] == undefined ? '' : this.psychological_assessment[this.record.psychological_assessment] + ''
233 241
       }
234 242
     }
235 243
   },
236 244
   methods: {
237
-    isShow(name){
245
+    isShow (name) {
238 246
       var filedList = this.$store.getters.user.fileds
239 247
 
240
-      for (let i = 0; i < filedList.length; i++){
241
-        if(filedList[i].module == 2 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
248
+      for (let i = 0; i < filedList.length; i++) {
249
+        if (filedList[i].module == 2 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
242 250
           return true
243 251
         }
244 252
       }
245 253
       return false
246
-    },
254
+    }
247 255
 
248 256
   }
249
-};
257
+}
250 258
 </script>
251 259
 
252 260
 <style rel="stylesheet/scss" lang="scss" scoped>
253 261
 
254 262
 </style>
255
-
256
-
257
-

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

@@ -124,7 +124,6 @@
124 124
         </li>
125 125
       <!-- </ul>
126 126
 
127
-
128 127
       <ul > -->
129 128
         <li v-if="isShow('透析过程')">
130 129
           <label for="tw">透析过程 : </label>
@@ -136,8 +135,6 @@
136 135
           <span class="content" id="tw" >{{in_advance_reason}}</span>
137 136
         </li>
138 137
 
139
-
140
-
141 138
         <li v-if="isShow('内瘘管拔针后压迫止血时间')">
142 139
           <label for="ml">内瘘管拔针后压迫止血时间 : </label>
143 140
           <span id="ml" class="content" v-if="hemostasis_minute">{{hemostasis_minute}}min</span>
@@ -183,448 +180,452 @@
183 180
 </template>
184 181
 
185 182
 <script>
186
-  export default {
187
-    name: "DialysisPrescription",
188
-    data() {
189
-      return {
190
-        title: "透后评估 ",
191
-        template_id: 0,
192
-        // note: "无明显异常",
193
-        // doctor: "刘小军  医生",
194
-        // info1: [
195
-        //   { value: "1", label: "透后体重 : ", content: "55", unit: "kg" },
196
-        //   { value: "2", label: "收缩压 : ", content: "174", unit: "mmHg" },
197
-        //   { value: "3", label: "实际超滤量: ", content: "20", unit: "ml" },
198
-        //   { value: "4", label: "疑血 : ", content: "无震颤", unit: "" },
199
-        //   { value: "5", label: "", content: "", unit: "" }
200
-        // ],
201
-        // info2: [
202
-        //   { value: "1", label: "体重减少 : ", content: "3", unit: "kg" },
203
-        //   { value: "2", label: "舒张压 : ", content: "200", unit: "mmHg" },
204
-        //   { value: "3", label: "实际置换量 : ", content: "20", unit: "ml" },
205
-        //   { value: "3", label: "透后症状 : ", content: "无症状", unit: "" },
206
-        //   { value: "4", label: "导管 : ", content: "导管堵塞", unit: "" }
207
-        // ],
208
-        // info3: [
209
-        //   { value: "1", label: "体温 : ", content: "14", unit: "℃" },
210
-        //   { value: "2", label: "心率 : ", content: "2", unit: "次/分" },
211
-        //   { value: "3", label: "实际治疗时长 : ", content: "4时4分", unit: "" },
212
-        //   { value: "4", label: "透析中入量: ", content: "一般", unit: "" },
213
-        //   { value: "4", label: "并发症: ", content: "痔疮出血", unit: "" }
214
-        // ]
215
-      };
216
-    },
217
-    props: {
218
-      record: {
219
-        type: Object,
220
-      }
221
-    }, created() {
222
-      this.template_id = this.$store.getters.user.template_info.template_id
223
-    },
224
-    computed: {
225
-      weight_after: function () {
226
-        if (this.record == null || this.record.id == "") {
227
-          return "-"
228
-        }
229
-        return this.record.weight_after
230
-      },
231
-      systolic_blood_pressure: function () {
232
-        if (this.record == null || this.record.id == "") {
233
-          return "-"
234
-        }
235
-        return this.record.systolic_blood_pressure
236
-      },
237
-      actual_ultrafiltration: function () {
238
-        if (this.record == null || this.record.id == "") {
239
-          return "-"
240
-        }
241
-        return this.record.actual_ultrafiltration
242
-      },
243
-      cruor: function () {
244
-        if (this.record == null || this.record.id == "") {
245
-          return "-"
246
-        }
247
-        return this.record.cruor
248
-      },
249
-      internal_fistula: function () {
250
-        if (this.record == null || this.record.id == "") {
251
-          return "-"
252
-        }
253
-        return this.record.internal_fistula;
254
-      },
255
-      weight_loss: function () {
256
-        if (this.record == null || this.record.id == "") {
257
-          return "-"
258
-        }
259
-        return this.record.weight_loss
260
-      },
261
-      inpatient_department: function () {
262
-        if (this.record == null || this.record.id == "") {
263
-          return "-"
264
-        }
265
-        return this.record.inpatient_department
266
-      },
267
-      patient_gose: function () {
268
-        if (this.record == null || this.record.id == "") {
269
-          return 0
270
-        }
271
-        return this.record.patient_gose
272
-      },
273
-      diastolic_blood_pressure: function () {
274
-        if (this.record == null || this.record.id == "") {
275
-          return "-"
276
-        }
277
-        return this.record.diastolic_blood_pressure
278
-      },
279
-      actual_displacement: function () {
280
-        if (this.record == null || this.record.id == "") {
281
-          return "-"
282
-        }
283
-        return this.record.actual_displacement
284
-      },
285
-      symptom_after_dialysis: function () {
286
-        if (this.record == null || this.record.id == "") {
287
-          return "-"
288
-        }
289
-        return this.record.symptom_after_dialysis
183
+export default {
184
+  name: 'DialysisPrescription',
185
+  data () {
186
+    return {
187
+      title: '透后评估 ',
188
+      template_id: 0
189
+      // note: "无明显异常",
190
+      // doctor: "刘小军  医生",
191
+      // info1: [
192
+      //   { value: "1", label: "透后体重 : ", content: "55", unit: "kg" },
193
+      //   { value: "2", label: "收缩压 : ", content: "174", unit: "mmHg" },
194
+      //   { value: "3", label: "实际超滤量: ", content: "20", unit: "ml" },
195
+      //   { value: "4", label: "疑血 : ", content: "无震颤", unit: "" },
196
+      //   { value: "5", label: "", content: "", unit: "" }
197
+      // ],
198
+      // info2: [
199
+      //   { value: "1", label: "体重减少 : ", content: "3", unit: "kg" },
200
+      //   { value: "2", label: "舒张压 : ", content: "200", unit: "mmHg" },
201
+      //   { value: "3", label: "实际置换量 : ", content: "20", unit: "ml" },
202
+      //   { value: "3", label: "透后症状 : ", content: "无症状", unit: "" },
203
+      //   { value: "4", label: "导管 : ", content: "导管堵塞", unit: "" }
204
+      // ],
205
+      // info3: [
206
+      //   { value: "1", label: "体温 : ", content: "14", unit: "℃" },
207
+      //   { value: "2", label: "心率 : ", content: "2", unit: "次/分" },
208
+      //   { value: "3", label: "实际治疗时长 : ", content: "4时4分", unit: "" },
209
+      //   { value: "4", label: "透析中入量: ", content: "一般", unit: "" },
210
+      //   { value: "4", label: "并发症: ", content: "痔疮出血", unit: "" }
211
+      // ]
212
+    }
213
+    },
214
+  props: {
215
+    record: {
216
+      type: Object
217
+    }
218
+  },
219
+created () {
220
+    this.template_id = this.$store.getters.user.template_info.template_id
221
+  },
222
+  computed: {
223
+    weight_after: function () {
224
+      if (this.record == null || this.record.id == '') {
225
+        return '-'
226
+      }
227
+      return this.record.weight_after
228
+    },
229
+    systolic_blood_pressure: function () {
230
+      if (this.record == null || this.record.id == '') {
231
+        return '-'
232
+      }
233
+      return this.record.systolic_blood_pressure
234
+    },
235
+    actual_ultrafiltration: function () {
236
+      if (this.record == null || this.record.id == '') {
237
+        return '-'
238
+      }
239
+      return this.record.actual_ultrafiltration
240
+    },
241
+    cruor: function () {
242
+      if (this.record == null || this.record.id == '') {
243
+        return '-'
244
+      }
245
+      return this.record.cruor
246
+    },
247
+    internal_fistula: function () {
248
+      if (this.record == null || this.record.id == '') {
249
+        return '-'
250
+      }
251
+      return this.record.internal_fistula
290 252
       },
291
-      blood_access_part: function () {
292
-        if (this.record == null || this.record.id == "") {
293
-          return "-"
294
-        }
295
-        let vascular_access = this.$store.getters.vascular_access;
253
+    weight_loss: function () {
254
+      if (this.record == null || this.record.id == '') {
255
+        return '-'
256
+      }
257
+      return this.record.weight_loss
258
+    },
259
+    inpatient_department: function () {
260
+      if (this.record == null || this.record.id == '') {
261
+        return '-'
262
+      }
263
+      return this.record.inpatient_department
264
+    },
265
+    patient_gose: function () {
266
+      if (this.record == null || this.record.id == '') {
267
+        return 0
268
+      }
269
+      return this.record.patient_gose
270
+    },
271
+    diastolic_blood_pressure: function () {
272
+      if (this.record == null || this.record.id == '') {
273
+        return '-'
274
+      }
275
+      return this.record.diastolic_blood_pressure
276
+    },
277
+    actual_displacement: function () {
278
+      if (this.record == null || this.record.id == '') {
279
+        return '-'
280
+      }
281
+      return this.record.actual_displacement
282
+    },
283
+    symptom_after_dialysis: function () {
284
+      if (this.record == null || this.record.id == '') {
285
+        return '-'
286
+      }
287
+      return this.record.symptom_after_dialysis
288
+    },
289
+    blood_access_part: function () {
290
+      if (this.record == null || this.record.id == '') {
291
+        return '-'
292
+      }
293
+      let vascular_access = this.$store.getters.vascular_access
296 294
         let valen = vascular_access.length
297
-        let name = '-';
295
+      let name = '-'
298 296
         for (let index = 0; index < valen; index++) {
299
-          if (vascular_access[index].id == this.record.blood_access_part_id) {
300
-            name = vascular_access[index].name;
297
+        if (vascular_access[index].id == this.record.blood_access_part_id) {
298
+          name = vascular_access[index].name
301 299
             break;
302
-          }
303 300
         }
304
-        return name
305
-      },
306
-      puncture_point_oozing_blood_name: function () {
307
-
308
-        if (this.record == null || this.record.id == "") {
309
-          return "-"
310
-        }
311
-        switch (this.record.puncture_point_oozing_blood) {
312
-          case 1:
313
-            return '有'
314
-            break;
301
+      }
302
+      return name
303
+    },
304
+    puncture_point_oozing_blood_name: function () {
305
+      if (this.record == null || this.record.id == '') {
306
+        return '-'
307
+      }
308
+      switch (this.record.puncture_point_oozing_blood) {
309
+        case 1:
310
+          return '有'
311
+          break
315 312
           case 2:
316
-            return '无'
317
-            break
313
+          return '无'
314
+          break
318 315
 
319
-          default:
320
-            return '-'
321
-            break;
316
+        default:
317
+          return '-'
318
+          break
322 319
         }
323
-      },eat_name:function(){
324
-        if (this.record == null || this.record.id == "") {
325
-          return "-"
326
-        }
327
-        switch (this.record.is_eat) {
328
-          case 1:
329
-            return '有'
330
-            break;
320
+    }, 
321
+eat_name: function () {
322
+      if (this.record == null || this.record.id == '') {
323
+        return '-'
324
+      }
325
+      switch (this.record.is_eat) {
326
+        case 1:
327
+          return '有'
328
+          break
331 329
           case 2:
332
-            return '无'
333
-            break
330
+          return '无'
331
+          break
334 332
 
335
-          default:
336
-            return '-'
337
-            break;
333
+        default:
334
+          return '-'
335
+          break
338 336
         }
339
-      },
340
-      patient_gose_name: function () {
341
-        if (this.record == null || this.record.id == "") {
342
-          return "-"
343
-        }
344
-        switch (this.record.patient_gose) {
345
-          case 1:
346
-            return '离院'
347
-            break;
337
+    },
338
+    patient_gose_name: function () {
339
+      if (this.record == null || this.record.id == '') {
340
+        return '-'
341
+      }
342
+      switch (this.record.patient_gose) {
343
+        case 1:
344
+          return '离院'
345
+          break
348 346
           case 2:
349
-            return '留观'
350
-            break
351
-          case 3:
352
-            return '住院'
353
-            break
347
+          return '留观'
348
+          break
349
+        case 3:
350
+          return '住院'
351
+          break
354 352
 
355
-          default:
356
-            return '-'
357
-            break;
353
+        default:
354
+          return '-'
355
+          break
358 356
         }
359
-      },
360
-      blood_access_opera: function () {
361
-        if (this.record == null || this.record.id == "") {
362
-          return "-"
363
-        }
364
-        let vascular_access = this.$store.getters.vascular_access_desc;
357
+    },
358
+    blood_access_opera: function () {
359
+      if (this.record == null || this.record.id == '') {
360
+        return '-'
361
+      }
362
+      let vascular_access = this.$store.getters.vascular_access_desc
365 363
         let valen = vascular_access.length
366
-        let name = '-';
364
+      let name = '-'
367 365
         for (let index = 0; index < valen; index++) {
368
-          if (vascular_access[index].id == this.record.blood_access_part_opera_id) {
369
-            name = vascular_access[index].name;
366
+        if (vascular_access[index].id == this.record.blood_access_part_opera_id) {
367
+          name = vascular_access[index].name
370 368
             break;
371
-          }
372
-        }
373
-        return name
374
-      },
375
-      catheter: function () {
376
-        if (this.record == null || this.record.id == "") {
377
-          return "-"
378
-        }
379
-        return this.record.catheter
380
-      },
381
-      puncture_point_haematoma_name: function () {
382
-        if (this.record == null || this.record.id == "") {
383
-          return "-"
384 369
         }
385
-        switch (this.record.puncture_point_haematoma) {
386
-          case 1:
387
-            return '有'
388
-            break;
370
+      }
371
+      return name
372
+    },
373
+    catheter: function () {
374
+      if (this.record == null || this.record.id == '') {
375
+        return '-'
376
+      }
377
+      return this.record.catheter
378
+    },
379
+    puncture_point_haematoma_name: function () {
380
+      if (this.record == null || this.record.id == '') {
381
+        return '-'
382
+      }
383
+      switch (this.record.puncture_point_haematoma) {
384
+        case 1:
385
+          return '有'
386
+          break
389 387
           case 2:
390
-            return '无'
391
-            break
392
-          default:
393
-            return '-'
394
-            break;
388
+          return '无'
389
+          break
390
+        default:
391
+          return '-'
392
+          break
395 393
         }
396
-      },
397
-      breathing_rate:function(){
398
-        if (this.record == null || this.record.id == "") {
399
-          return "-"
400
-        }
401
-        return this.record.breathing_rate
402
-      },
403
-      temperature: function () {
404
-        if (this.record == null || this.record.id == "") {
405
-          return "-"
406
-        }
407
-        return this.record.temperature
408
-      },
409
-      pulse_frequency: function () {
410
-        if (this.record == null || this.record.id == "") {
411
-          return "-"
412
-        }
413
-        return this.record.pulse_frequency
414
-      },
415
-      actual_treatment_hour: function () {
416
-        if (this.record == null || this.record.id == "") {
417
-          return "-"
418
-        }
419
-        return this.record.actual_treatment_hour
420
-      },
421
-      actual_treatment_minute: function () {
422
-        if (this.record == null || this.record.id == "") {
423
-          return "-"
424
-        }
425
-        return this.record.actual_treatment_minute
426
-      },
427
-      dialysis_intakes_feed: function () {
428
-        if (this.record == null || this.record.id == "") {
429
-          return "-"
430
-        }
431
-        return this.record.dialysis_intakes
432
-      },
433
-      observation_content_other: function () {
434
-        if (this.record == null || this.record.id == "") {
435
-          return "-"
436
-        }
437
-        return this.record.observation_content_other
438
-      },
439
-      observation_content: function () {
440
-        if (this.record == null || this.record.id == "") {
441
-          return "-"
442
-        }
443
-        return this.record.observation_content
444
-      },
445
-      complication: function () {
446
-        if (this.record == null || this.record.id == "") {
447
-          return "-"
448
-        }
449
-        return this.record.complication
450
-      },
451
-      internal_fistula_tremor_ac_name: function () {
452
-        if (this.record == null || this.record.id == "") {
453
-          return "-"
454
-        }
455
-        switch (this.record.internal_fistula_tremor_ac) {
456
-          case 1:
457
-            return '存在'
458
-            break;
394
+    },
395
+    breathing_rate: function () {
396
+      if (this.record == null || this.record.id == '') {
397
+        return '-'
398
+      }
399
+      return this.record.breathing_rate
400
+    },
401
+    temperature: function () {
402
+      if (this.record == null || this.record.id == '') {
403
+        return '-'
404
+      }
405
+      return this.record.temperature
406
+    },
407
+    pulse_frequency: function () {
408
+      if (this.record == null || this.record.id == '') {
409
+        return '-'
410
+      }
411
+      return this.record.pulse_frequency
412
+    },
413
+    actual_treatment_hour: function () {
414
+      if (this.record == null || this.record.id == '') {
415
+        return '-'
416
+      }
417
+      return this.record.actual_treatment_hour
418
+    },
419
+    actual_treatment_minute: function () {
420
+      if (this.record == null || this.record.id == '') {
421
+        return '-'
422
+      }
423
+      return this.record.actual_treatment_minute
424
+    },
425
+    dialysis_intakes_feed: function () {
426
+      if (this.record == null || this.record.id == '') {
427
+        return '-'
428
+      }
429
+      return this.record.dialysis_intakes
430
+    },
431
+    observation_content_other: function () {
432
+      if (this.record == null || this.record.id == '') {
433
+        return '-'
434
+      }
435
+      return this.record.observation_content_other
436
+    },
437
+    observation_content: function () {
438
+      if (this.record == null || this.record.id == '') {
439
+        return '-'
440
+      }
441
+      return this.record.observation_content
442
+    },
443
+    complication: function () {
444
+      if (this.record == null || this.record.id == '') {
445
+        return '-'
446
+      }
447
+      return this.record.complication
448
+    },
449
+    internal_fistula_tremor_ac_name: function () {
450
+      if (this.record == null || this.record.id == '') {
451
+        return '-'
452
+      }
453
+      switch (this.record.internal_fistula_tremor_ac) {
454
+        case 1:
455
+          return '存在'
456
+          break
459 457
           case 2:
460
-            return '减弱'
461
-            break;
458
+          return '减弱'
459
+          break
462 460
           case 3:
463
-            return '无';
461
+          return '无'
464 462
             break
465
-          default:
466
-            return '-'
467
-            break;
468
-        }
469
-      },
470
-
471
-      remark: function () {
472
-        if (this.record == null || this.record.id == "") {
473
-          return ""
474
-        }
475
-        return this.record.remark
476
-      },in_advance_minute:function () {
477
-        if (this.record == null || this.record.id == "") {
478
-          return ""
479
-        }
480
-        return this.record.in_advance_minute
481
-      },in_advance_reason:function () {
482
-        if (this.record == null || this.record.id == "") {
483
-          return ""
484
-        }
485
-        return this.record.in_advance_reason + ","+this.record.in_advance_reason_other
486
-      },hemostasis_minute:function () {
487
-        if (this.record == null || this.record.id == "") {
488
-          return ""
463
+        default:
464
+          return '-'
465
+          break
489 466
         }
467
+    },
490 468
 
491
-        return this.record.hemostasis_minute
492
-      },in_advance_reason_other:function () {
493
-        if (this.record == null || this.record.id == "") {
494
-          return ""
495
-        }
496
-        return this.record.in_advance_reason_other
469
+    remark: function () {
470
+      if (this.record == null || this.record.id == '') {
471
+        return ''
472
+      }
473
+      return this.record.remark
474
+    }, 
475
+in_advance_minute: function () {
476
+      if (this.record == null || this.record.id == '') {
477
+        return ''
478
+      }
479
+      return this.record.in_advance_minute
480
+    },
481
+ in_advance_reason: function () {
482
+      if (this.record == null || this.record.id == '') {
483
+        return ''
484
+      }
485
+      return this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
486
+    },
487
+ hemostasis_minute: function () {
488
+      if (this.record == null || this.record.id == '') {
489
+        return ''
497 490
       }
491
+
492
+      return this.record.hemostasis_minute
498 493
     },
499
-    methods: {
500
-      isShow(name){
501
-        var filedList = this.$store.getters.user.fileds
494
+ in_advance_reason_other: function () {
495
+      if (this.record == null || this.record.id == '') {
496
+        return ''
497
+      }
498
+      return this.record.in_advance_reason_other
499
+    }
500
+  },
501
+  methods: {
502
+    isShow (name) {
503
+      var filedList = this.$store.getters.user.fileds
502 504
 
503
-        for (let i = 0; i < filedList.length; i++){
504
-          if(filedList[i].module == 5 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
505
-            return true
506
-          }
505
+      for (let i = 0; i < filedList.length; i++) {
506
+        if (filedList[i].module == 5 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
507
+          return true
507 508
         }
508
-        return false
509
-      },
510
-      getOpera:function (id) {
511
-        var hemostasis_opera = this.$store.getters.hemostasis_opera;
512
-        var hemostasisOperaName = "";
513
-        for (let i = 0; i < hemostasis_opera.length; i++){
514
-          if(hemostasis_opera[i].id == id){
515
-            hemostasisOperaName =    hemostasis_opera[i].name
516
-          }
509
+      }
510
+      return false
511
+    },
512
+    getOpera: function (id) {
513
+      var hemostasis_opera = this.$store.getters.hemostasis_opera
514
+        var hemostasisOperaName = '';
515
+      for (let i = 0; i < hemostasis_opera.length; i++) {
516
+        if (hemostasis_opera[i].id == id) {
517
+          hemostasisOperaName = hemostasis_opera[i].name
517 518
         }
518
-        return hemostasisOperaName
519
-
520
-      },getTremorNoise:function (id) {
521
-        var tremor_noise = this.$store.getters.tremor_noise;
522
-        var tremorNoiseName = "";
523
-        for (let i = 0; i < tremor_noise.length; i++){
524
-          if(tremor_noise[i].id == id){
525
-            tremorNoiseName =    tremor_noise[i].name
526
-          }
519
+      }
520
+      return hemostasisOperaName
521
+    },
522
+ getTremorNoise: function (id) {
523
+      var tremor_noise = this.$store.getters.tremor_noise
524
+        var tremorNoiseName = '';
525
+      for (let i = 0; i < tremor_noise.length; i++) {
526
+        if (tremor_noise[i].id == id) {
527
+          tremorNoiseName = tremor_noise[i].name
527 528
         }
528
-        return tremorNoiseName
529
-      },getDisequilibriumSyndrome:function (id) {
530
-        var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome;
531
-        var disequilibriumSyndromeName = "";
532
-        for (let i = 0; i < disequilibrium_syndrome.length; i++){
533
-          if(disequilibrium_syndrome[i].id == id){
534
-            disequilibriumSyndromeName =    disequilibrium_syndrome[i].name
535
-          }
529
+      }
530
+      return tremorNoiseName
531
+    },
532
+ getDisequilibriumSyndrome: function (id) {
533
+      var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome
534
+        var disequilibriumSyndromeName = '';
535
+      for (let i = 0; i < disequilibrium_syndrome.length; i++) {
536
+        if (disequilibrium_syndrome[i].id == id) {
537
+          disequilibriumSyndromeName = disequilibrium_syndrome[i].name
536 538
         }
537
-        return disequilibriumSyndromeName
538
-
539
-      },getDisequilibriumSyndromeOptionName:function (id) {
540
-        var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option;
541
-        var disequilibriumSyndromeOptionName = "";
542
-        for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
543
-          if (disequilibrium_syndrome_option[i].id == id) {
544
-            disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
545
-          }
539
+      }
540
+      return disequilibriumSyndromeName
541
+    },
542
+ getDisequilibriumSyndromeOptionName: function (id) {
543
+      var disequilibrium_syndrome_option = this.$store.getters.disequilibrium_syndrome_option
544
+        var disequilibriumSyndromeOptionName = '';
545
+      for (let i = 0; i < disequilibrium_syndrome_option.length; i++) {
546
+        if (disequilibrium_syndrome_option[i].id == id) {
547
+          disequilibriumSyndromeOptionName = disequilibrium_syndrome_option[i].name
546 548
         }
547
-        return disequilibriumSyndromeOptionName
548
-      },getArterialTubeName:function (id) {
549
-        var arterial_tube = this.$store.getters.arterial_tube;
550
-        var arterialTubeName = "";
551
-        for (let i = 0; i < arterial_tube.length; i++) {
552
-          if (arterial_tube[i].id == id) {
553
-            arterialTubeName = arterial_tube[i].name
554
-          }
549
+      }
550
+      return disequilibriumSyndromeOptionName
551
+    }, 
552
+getArterialTubeName: function (id) {
553
+      var arterial_tube = this.$store.getters.arterial_tube
554
+        var arterialTubeName = '';
555
+      for (let i = 0; i < arterial_tube.length; i++) {
556
+        if (arterial_tube[i].id == id) {
557
+          arterialTubeName = arterial_tube[i].name
555 558
         }
556
-        return arterialTubeName
557
-
558
-      },getIntravenousTubeName:function (id) {
559
-        var intravenous_tube = this.$store.getters.intravenous_tube;
560
-        var intravenousTubeName = "";
561
-        for (let i = 0; i < intravenous_tube.length; i++) {
562
-          if (intravenous_tube[i].id == id) {
563
-            intravenousTubeName = intravenous_tube[i].name
564
-          }
559
+      }
560
+      return arterialTubeName
561
+    },
562
+ getIntravenousTubeName: function (id) {
563
+      var intravenous_tube = this.$store.getters.intravenous_tube
564
+        var intravenousTubeName = '';
565
+      for (let i = 0; i < intravenous_tube.length; i++) {
566
+        if (intravenous_tube[i].id == id) {
567
+          intravenousTubeName = intravenous_tube[i].name
565 568
         }
566
-        return intravenousTubeName
567
-
568
-      },getDialyzer:function (id) {
569
-        var dialyzer = this.$store.getters.dialyzer;
570
-        var dialyzerName = "";
571
-        for (let i = 0; i < dialyzer.length; i++) {
572
-          if (dialyzer[i].id == id) {
573
-            dialyzerName = dialyzer[i].name
574
-          }
569
+      }
570
+      return intravenousTubeName
571
+    },
572
+ getDialyzer: function (id) {
573
+      var dialyzer = this.$store.getters.dialyzer
574
+        var dialyzerName = '';
575
+      for (let i = 0; i < dialyzer.length; i++) {
576
+        if (dialyzer[i].id == id) {
577
+          dialyzerName = dialyzer[i].name
575 578
         }
576
-        return dialyzerName
577
-      }
578
-      // setRecord(record) {
579
-      //   if (record == null) {
580
-      //     this.info1[0].content = ""
581
-      //     this.info1[1].content = ""
582
-      //     this.info1[2].content = ""
583
-      //     this.info1[3].content = ""
584
-      //     this.info1[4].content = ""
585
-
586
-      //     this.info2[0].content = ""
587
-      //     this.info2[1].content = ""
588
-      //     this.info2[2].content = ""
589
-      //     this.info2[3].content = ""
590
-      //     this.info2[4].content = ""
591
-
592
-      //     this.info3[0].content = ""
593
-      //     this.info3[1].content = ""
594
-      //     this.info3[2].content = ""
595
-      //     this.info3[3].content = ""
596
-      //     this.info3[4].content = ""
597
-
598
-      //     this.note = ""
599
-
600
-      //   } else {
601
-      //     this.info1[0].content = record.weight_after
602
-      //     this.info1[1].content = record.systolic_blood_pressure
603
-      //     this.info1[2].content = record.actual_ultrafiltration
604
-      //     this.info1[3].content = record.cruor
605
-      //     // this.info1[4].content = record.systolic_blood_pressure
606
-
607
-      //     this.info2[0].content = record.weight_loss
608
-      //     this.info2[1].content = record.diastolic_blood_pressure
609
-      //     this.info2[2].content = record.actual_displacement
610
-      //     this.info2[3].content = record.symptom_after_dialysis
611
-      //     this.info2[4].content = record.catheter
612
-
613
-      //     this.info3[0].content = record.temperature
614
-      //     this.info3[1].content = record.pulse_frequency
615
-      //     this.info3[2].content = record.actual_treatment_hour
616
-      //     this.info3[3].content = record.dialysis_intakes_feed
617
-      //     this.info3[4].content = record.complication
618
-
619
-      //     this.note = record.remark
620
-      //   }
621
-      // }
579
+      }
580
+      return dialyzerName
622 581
     }
623
-  };
582
+    // setRecord(record) {
583
+    //   if (record == null) {
584
+    //     this.info1[0].content = ""
585
+    //     this.info1[1].content = ""
586
+    //     this.info1[2].content = ""
587
+    //     this.info1[3].content = ""
588
+    //     this.info1[4].content = ""
589
+
590
+    //     this.info2[0].content = ""
591
+    //     this.info2[1].content = ""
592
+    //     this.info2[2].content = ""
593
+    //     this.info2[3].content = ""
594
+    //     this.info2[4].content = ""
595
+
596
+    //     this.info3[0].content = ""
597
+    //     this.info3[1].content = ""
598
+    //     this.info3[2].content = ""
599
+    //     this.info3[3].content = ""
600
+    //     this.info3[4].content = ""
601
+
602
+    //     this.note = ""
603
+
604
+    //   } else {
605
+    //     this.info1[0].content = record.weight_after
606
+    //     this.info1[1].content = record.systolic_blood_pressure
607
+    //     this.info1[2].content = record.actual_ultrafiltration
608
+    //     this.info1[3].content = record.cruor
609
+    //     // this.info1[4].content = record.systolic_blood_pressure
610
+
611
+    //     this.info2[0].content = record.weight_loss
612
+    //     this.info2[1].content = record.diastolic_blood_pressure
613
+    //     this.info2[2].content = record.actual_displacement
614
+    //     this.info2[3].content = record.symptom_after_dialysis
615
+    //     this.info2[4].content = record.catheter
616
+
617
+    //     this.info3[0].content = record.temperature
618
+    //     this.info3[1].content = record.pulse_frequency
619
+    //     this.info3[2].content = record.actual_treatment_hour
620
+    //     this.info3[3].content = record.dialysis_intakes_feed
621
+    //     this.info3[4].content = record.complication
622
+
623
+    //     this.note = record.remark
624
+    //   }
625
+    // }
626
+  }
627
+}
624 628
 </script>
625 629
 
626 630
 <style rel="stylesheet/scss" lang="scss" scoped>
627 631
 </style>
628
-
629
-
630
-

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

@@ -47,7 +47,6 @@
47 47
           <span class="unit"></span>
48 48
         </li>
49 49
 
50
-
51 50
       <!-- </ul>
52 51
       <ul> -->
53 52
         <li v-if="isShow('体温')">
@@ -129,8 +128,6 @@
129 128
 <!--
130 129
       </ul>
131 130
 
132
-
133
-
134 131
       <ul > -->
135 132
         <li v-if="isShow('位置')">
136 133
           <label>位置:</label>
@@ -143,8 +140,6 @@
143 140
           <span class="content">{{this.record.ductus_arantii}}</span>
144 141
         </li>
145 142
 
146
-
147
-
148 143
         <li v-if="isShow('其他中心静脉导管')">
149 144
           <label>其他中心静脉导管:</label>
150 145
           <span class="content">{{ ductus_arantii_other }}</span>
@@ -157,29 +152,24 @@
157 152
           <span class="content" >{{emergency_treatment_other}}</span>
158 153
         </li>
159 154
 
160
-
161
-
162 155
         <li v-if="isShow('感染')">
163 156
           <label>感染:</label>
164 157
           <span class="content">{{this.record.is_infect == 1 ? '无' : '有' }}</span>
165 158
           <span class="unit"> </span>
166 159
         </li>
167 160
 
168
-
169 161
         <li v-if="isShow('其他感染情况')">
170 162
           <label>其他感染情况:</label>
171 163
           <span class="content">{{ infect_other }}</span>
172 164
           <span class="unit"> </span>
173 165
         </li>
174 166
 
175
-
176 167
         <li v-if="isShow('外露')">
177 168
           <label>外露:</label>
178 169
           <span class="content">{{this.record.exposed?this.record.exposed:''}}</span>
179 170
           <span class="unit">cm</span>
180 171
         </li>
181 172
 
182
-
183 173
         <li v-if="isShow('皮肤')">
184 174
           <label>皮肤:</label>
185 175
           <span class="content">{{getSkin(this.record.skin)}}</span>
@@ -192,7 +182,6 @@
192 182
           <span class="unit"> </span>
193 183
         </li>
194 184
 
195
-
196 185
       </ul>
197 186
 
198 187
     </div>
@@ -201,351 +190,350 @@
201 190
 </template>
202 191
 
203 192
 <script>
204
-  export default {
205
-    name: 'assessmentBefore',
206
-    data () {
207
-      return {
208
-        title: '透前评估 ',
209
-        template_id: 0,
193
+export default {
194
+  name: 'assessmentBefore',
195
+  data () {
196
+    return {
197
+      title: '透前评估 ',
198
+      template_id: 0
199
+    }
200
+  },
201
+  props: {
202
+    record: {
203
+      type: Object
204
+    },
205
+ dry_weights: {
206
+      type: Object
207
+    }
208
+  },
209
+  created () {
210
+    this.template_id = this.$store.getters.user.template_info.template_id
211
+  },
212
+  computed: {
213
+    machine_type: function () {
214
+      if (this.record == null || this.record.id == '') {
215
+        return ''
210 216
       }
217
+      return this.record.machine_type
211 218
     },
212
-    props: {
213
-      record: {
214
-        type: Object
215
-      },dry_weights:{
216
-        type: Object
219
+    weight_before: function () {
220
+      if (this.record == null || this.record.id == '') {
221
+        return '-'
217 222
       }
223
+      return this.record.weight_before
218 224
     },
219
-    created () {
220
-      this.template_id = this.$store.getters.user.template_info.template_id
225
+    additional_weight: function () {
226
+      if (this.record == null || this.record.id == '') {
227
+        return '-'
228
+      }
229
+      return this.record.additional_weight
230
+    },
231
+    systolic_blood_pressure: function () {
232
+      if (this.record == null || this.record.id == '') {
233
+        return '-'
234
+      }
235
+      return this.record.systolic_blood_pressure
236
+    },
237
+    last_post_dialysis: function () {
238
+      if (this.record == null || this.record.id == '') {
239
+        return '-'
240
+      }
241
+      return this.record.last_post_dialysis
221 242
     },
222
-    computed: {
223
-      machine_type:function(){
224
-        if (this.record == null || this.record.id == '') {
225
-          return ''
226
-        }
227
-        return this.record.machine_type
228
-
229
-      },
230
-      weight_before: function () {
231
-        if (this.record == null || this.record.id == '') {
232
-          return '-'
233
-        }
234
-        return this.record.weight_before
235
-      },
236
-      additional_weight:function () {
237
-        if (this.record == null || this.record.id == '') {
238
-          return '-'
239
-        }
240
-        return this.record.additional_weight
241
-      },
242
-      systolic_blood_pressure: function () {
243
-        if (this.record == null || this.record.id == '') {
244
-          return '-'
245
-        }
246
-        return this.record.systolic_blood_pressure
247
-      },
248
-      last_post_dialysis: function () {
249
-        if (this.record == null || this.record.id == '') {
250
-          return '-'
251
-        }
252
-        return this.record.last_post_dialysis
253
-      },
254
-
255
-      dry_weight: function () {
256
-        if (this.$store.getters.user.template_info.template_id == 6){
257
-          if(this.dry_weights != null && this.dry_weights.id > 0 ){
258
-            return this.dry_weights.dry_weight
259
-          }else{
260
-            if (this.record == null || this.record.id == '') {
261
-              return '-'
262
-            }
263
-            return this.record.dry_weight
264
-          }
265
-
266
-        }else{
267 243
 
244
+    dry_weight: function () {
245
+      if (this.$store.getters.user.template_info.template_id == 6) {
246
+        if (this.dry_weights != null && this.dry_weights.id > 0) {
247
+          return this.dry_weights.dry_weight
248
+        } else{
268 249
           if (this.record == null || this.record.id == '') {
269
-
270 250
             return '-'
271 251
           }
272
-
273 252
           return this.record.dry_weight
274 253
         }
275
-
276
-
277
-      },
278
-      diastolic_blood_pressure: function () {
254
+      }else {
279 255
         if (this.record == null || this.record.id == '') {
280 256
           return '-'
281 257
         }
282
-        return this.record.diastolic_blood_pressure
283
-      },
284
-      dialysis_interphase: function () {
285
-        if (this.record == null || this.record.id == '') {
286
-          return '-'
287
-        }
288
-        return this.record.dialysis_interphase
289
-      },
290
-      catheter: function () {
291
-        if (this.record == null || this.record.id == '') {
292
-          return '-'
293
-        }
294
-        return this.record.catheter
295
-      },
296 258
 
297
-      temperature: function () {
298
-        if (this.record == null || this.record.id == '') {
299
-          return '-'
300
-        }
301
-        return this.record.temperature
302
-      },
303
-      pulse_frequency: function () {
304
-        if (this.record == null || this.record.id == '') {
305
-          return '-'
306
-        }
307
-        return this.record.pulse_frequency
308
-      },
309
-      breathing_rate: function () {
310
-        if (this.record == null || this.record.id == '') {
311
-          return '-'
312
-        }
313
-        return this.record.breathing_rate
314
-      },
315
-      symptom_before_dialysis: function () {
316
-        if (this.record == null || this.record.id == '') {
317
-          return '-'
318
-        }
319
-        return this.record.symptom_before_dialysis
320
-      },
321
-      complication: function () {
322
-        if (this.record == null || this.record.id == '') {
323
-          return '-'
324
-        }
325
-        return this.record.complication
326
-      },
327
-      internal_fistula: function () {
328
-        if (this.record == null || this.record.id == '') {
329
-          return '-'
330
-        }
331
-        return this.record.internal_fistula
332
-      },
333
-      is_hemorrhage: function () {
334
-        if (this.record == null || this.record.id == '') {
335
-          return false
336
-        }
337
-        return this.record.is_hemorrhage == 1
338
-      },
339
-      hemorrhage: function () {
340
-        if (this.record == null || this.record.id == '') {
341
-          return '-'
342
-        }
343
-        return this.record.hemorrhage
344
-      },
345
-      hemorrhage_other: function () {
346
-        if (this.record == null || this.record.id == '') {
347
-          return '-'
348
-        }
349
-        return this.record.hemorrhage_other
350
-      },
351
-
352
-      remark: function () {
353
-        if (this.record == null || this.record.id == '') {
354
-          return ''
355
-        }
356
-        return this.record.remark
357
-      }, dialysis_count: function () {
358
-        if (this.record == null || this.record.id == '') {
359
-          return '-'
360
-        }
361
-        return this.record.dialysis_count
362
-      }, internal_fistula_other: function () {
363
-        if (this.record == null || this.record.id == '') {
364
-          return '-'
365
-        }
366
-        return this.record.internal_fistula_other
367
-      },venous_catheterization_part_other:function () {
368
-        if (this.record == null || this.record.id == '') {
369
-          return '-'
370
-        }
371
-        return this.record.venous_catheterization_part_other
372
-
373
-      },emergency_treatment_other:function () {
374
-        if (this.record == null || this.record.id == '') {
375
-          return '-'
376
-        }
377
-        return this.record.emergency_treatment_other
378
-      },blood_access_internal_fistula:function () {
379
-
380
-        var name1 = ""
381
-        var name2 = ""
382
-
383
-        if (this.record == null || this.record.id == '') {
384
-          return '-'
385
-        }
386
-        if(this.record.blood_access_internal_fistula == undefined){
387
-          name1 = ""
388
-        }else{
259
+        return this.record.dry_weight
260
+      }
261
+    },
262
+    diastolic_blood_pressure: function () {
263
+      if (this.record == null || this.record.id == '') {
264
+        return '-'
265
+      }
266
+      return this.record.diastolic_blood_pressure
267
+    },
268
+    dialysis_interphase: function () {
269
+      if (this.record == null || this.record.id == '') {
270
+        return '-'
271
+      }
272
+      return this.record.dialysis_interphase
273
+    },
274
+    catheter: function () {
275
+      if (this.record == null || this.record.id == '') {
276
+        return '-'
277
+      }
278
+      return this.record.catheter
279
+    },
389 280
 
390
-          name1 = this.record.blood_access_internal_fistula+","
281
+    temperature: function () {
282
+      if (this.record == null || this.record.id == '') {
283
+        return '-'
284
+      }
285
+      return this.record.temperature
286
+    },
287
+    pulse_frequency: function () {
288
+      if (this.record == null || this.record.id == '') {
289
+        return '-'
290
+      }
291
+      return this.record.pulse_frequency
292
+    },
293
+    breathing_rate: function () {
294
+      if (this.record == null || this.record.id == '') {
295
+        return '-'
296
+      }
297
+      return this.record.breathing_rate
298
+    },
299
+    symptom_before_dialysis: function () {
300
+      if (this.record == null || this.record.id == '') {
301
+        return '-'
302
+      }
303
+      return this.record.symptom_before_dialysis
304
+    },
305
+    complication: function () {
306
+      if (this.record == null || this.record.id == '') {
307
+        return '-'
308
+      }
309
+      return this.record.complication
310
+    },
311
+    internal_fistula: function () {
312
+      if (this.record == null || this.record.id == '') {
313
+        return '-'
314
+      }
315
+      return this.record.internal_fistula
316
+    },
317
+    is_hemorrhage: function () {
318
+      if (this.record == null || this.record.id == '') {
319
+        return false
320
+      }
321
+      return this.record.is_hemorrhage == 1
322
+    },
323
+    hemorrhage: function () {
324
+      if (this.record == null || this.record.id == '') {
325
+        return '-'
326
+      }
327
+      return this.record.hemorrhage
328
+    },
329
+    hemorrhage_other: function () {
330
+      if (this.record == null || this.record.id == '') {
331
+        return '-'
332
+      }
333
+      return this.record.hemorrhage_other
334
+    },
391 335
 
392
-        }
393
-        if(this.record.internal_fistula_other == undefined){
394
-          name2 = ""
395
-        }else{
396
-          name2 = this.record.internal_fistula_other
397
-        }
336
+    remark: function () {
337
+      if (this.record == null || this.record.id == '') {
338
+        return ''
339
+      }
340
+      return this.record.remark
341
+    },
342
+dialysis_count: function () {
343
+      if (this.record == null || this.record.id == '') {
344
+        return '-'
345
+      }
346
+      return this.record.dialysis_count
347
+    },
348
+internal_fistula_other: function () {
349
+      if (this.record == null || this.record.id == '') {
350
+        return '-'
351
+      }
352
+      return this.record.internal_fistula_other
353
+    },
354
+ venous_catheterization_part_other: function () {
355
+      if (this.record == null || this.record.id == '') {
356
+        return '-'
357
+      }
358
+      return this.record.venous_catheterization_part_other
359
+    }, 
360
+emergency_treatment_other: function () {
361
+      if (this.record == null || this.record.id == '') {
362
+        return '-'
363
+      }
364
+      return this.record.emergency_treatment_other
365
+    }, 
366
+blood_access_internal_fistula: function () {
367
+      var name1 = ''
368
+      var name2 = ''
369
+
370
+      if (this.record == null || this.record.id == '') {
371
+        return '-'
372
+      }
373
+      if (this.record.blood_access_internal_fistula == undefined) {
374
+        name1 = ''
375
+      } else{
376
+        name1 = this.record.blood_access_internal_fistula + ','
377
+      }
378
+      if (this.record.internal_fistula_other == undefined) {
379
+        name2 = ''
380
+      }else {
381
+        name2 = this.record.internal_fistula_other
382
+      }
398 383
 
399
-        return name1+name2
400
-      },infect_other:function () {
401
-        if (this.record == null || this.record.id == '') {
402
-          return '-'
403
-        }
404
-        return this.record.infect_other
405
-      },skin_other:function () {
406
-        if (this.record == null || this.record.id == '') {
407
-          return '-'
408
-        }
409
-        return this.record.skin_other
410
-      },ductus_arantii_other:function () {
411
-        if (this.record == null || this.record.id == '') {
412
-          return '-'
413
-        }
414
-        return this.record.ductus_arantii_other
384
+      return name1 + name2
385
+    },
386
+ infect_other: function () {
387
+      if (this.record == null || this.record.id == '') {
388
+        return '-'
389
+      }
390
+      return this.record.infect_other
391
+    }, 
392
+skin_other: function () {
393
+      if (this.record == null || this.record.id == '') {
394
+        return '-'
415 395
       }
396
+      return this.record.skin_other
416 397
     },
417
-    methods: {
418
-      isShow(name){
419
-        var filedList = this.$store.getters.user.fileds
398
+ ductus_arantii_other: function () {
399
+      if (this.record == null || this.record.id == '') {
400
+        return '-'
401
+      }
402
+      return this.record.ductus_arantii_other
403
+    }
404
+  },
405
+  methods: {
406
+    isShow (name) {
407
+      var filedList = this.$store.getters.user.fileds
420 408
 
421
-        for (let i = 0; i < filedList.length; i++){
422
-          if(filedList[i].module == 3 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
423
-            return true
424
-          }
409
+      for (let i = 0; i < filedList.length; i++) {
410
+        if (filedList[i].module == 3 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
411
+          return true
425 412
         }
426
-        return false
427
-      },
428
-      getBloodAccessInternalFistula: function (id) {
429
-        var BloodAccessInternalFistulaOptions = this.$store.getters.blood_access_internal_fistula;
430
-        var BloodAccessInternalFistulaName = "";
431
-        for (let i = 0; i < BloodAccessInternalFistulaOptions.length; i++){
432
-          if(BloodAccessInternalFistulaOptions[i].id == id){
433
-            BloodAccessInternalFistulaName =    BloodAccessInternalFistulaOptions[i].name
434
-          }
413
+      }
414
+      return false
415
+    },
416
+    getBloodAccessInternalFistula: function (id) {
417
+      var BloodAccessInternalFistulaOptions = this.$store.getters.blood_access_internal_fistula
418
+        var BloodAccessInternalFistulaName = '';
419
+      for (let i = 0; i < BloodAccessInternalFistulaOptions.length; i++) {
420
+        if (BloodAccessInternalFistulaOptions[i].id == id) {
421
+          BloodAccessInternalFistulaName = BloodAccessInternalFistulaOptions[i].name
435 422
         }
436
-        return BloodAccessInternalFistulaName
437
-      },
438
-      getBloodAccessNoise: function (id) {
439
-        var BloodAccessNoiseOptions = this.$store.getters.blood_access_noise;
440
-        var BloodAccessNoiseName = "";
441
-        for (let i = 0; i < BloodAccessNoiseOptions.length; i++){
442
-          if(BloodAccessNoiseOptions[i].id == id){
443
-            BloodAccessNoiseName =    BloodAccessNoiseOptions[i].name
444
-          }
423
+      }
424
+      return BloodAccessInternalFistulaName
425
+    },
426
+    getBloodAccessNoise: function (id) {
427
+      var BloodAccessNoiseOptions = this.$store.getters.blood_access_noise
428
+        var BloodAccessNoiseName = '';
429
+      for (let i = 0; i < BloodAccessNoiseOptions.length; i++) {
430
+        if (BloodAccessNoiseOptions[i].id == id) {
431
+          BloodAccessNoiseName = BloodAccessNoiseOptions[i].name
445 432
         }
446
-        return BloodAccessNoiseName
447
-      },getVenousCatheterization:function (id) {
448
-        var VenousCatheterizationOptions = this.$store.getters.venous_catheterization;
449
-        var VenousCatheterizationName = "";
450
-        for (let i = 0; i < VenousCatheterizationOptions.length; i++){
451
-          if(VenousCatheterizationOptions[i].id == id){
452
-            VenousCatheterizationName =    VenousCatheterizationOptions[i].name
453
-          }
433
+      }
434
+      return BloodAccessNoiseName
435
+    }, 
436
+getVenousCatheterization: function (id) {
437
+      var VenousCatheterizationOptions = this.$store.getters.venous_catheterization
438
+        var VenousCatheterizationName = '';
439
+      for (let i = 0; i < VenousCatheterizationOptions.length; i++) {
440
+        if (VenousCatheterizationOptions[i].id == id) {
441
+          VenousCatheterizationName = VenousCatheterizationOptions[i].name
454 442
         }
455
-        return VenousCatheterizationName
456
-      },getWay:function (id) {
457
-        var PunctureWayOptions = this.$store.getters.puncture_way;
458
-        var PunctureWayOptionsName = "";
459
-        for (let i = 0; i < PunctureWayOptions.length; i++){
460
-          if(PunctureWayOptions[i].id == id){
461
-            PunctureWayOptionsName =    PunctureWayOptions[i].name
462
-          }
443
+      }
444
+      return VenousCatheterizationName
445
+    },
446
+ getWay: function (id) {
447
+      var PunctureWayOptions = this.$store.getters.puncture_way
448
+        var PunctureWayOptionsName = '';
449
+      for (let i = 0; i < PunctureWayOptions.length; i++) {
450
+        if (PunctureWayOptions[i].id == id) {
451
+          PunctureWayOptionsName = PunctureWayOptions[i].name
463 452
         }
464
-        return PunctureWayOptionsName
465
-
466
-      },getVenousCatheterizationPart:function (id) {
467
-        var venousCatheterizationPartOptions = this.$store.getters.venous_catheterization_part;
468
-        var venousCatheterizationPartName = "";
469
-        for (let i = 0; i < venousCatheterizationPartOptions.length; i++){
470
-          if(venousCatheterizationPartOptions[i].id == id){
471
-            venousCatheterizationPartName =    venousCatheterizationPartOptions[i].name
472
-          }
453
+      }
454
+      return PunctureWayOptionsName
455
+    },
456
+ getVenousCatheterizationPart: function (id) {
457
+      var venousCatheterizationPartOptions = this.$store.getters.venous_catheterization_part
458
+        var venousCatheterizationPartName = '';
459
+      for (let i = 0; i < venousCatheterizationPartOptions.length; i++) {
460
+        if (venousCatheterizationPartOptions[i].id == id) {
461
+          venousCatheterizationPartName = venousCatheterizationPartOptions[i].name
473 462
         }
474
-        return venousCatheterizationPartName
475
-      },getDuctusArantii:function (id) {
476
-        var ductusArantiiOptions = this.$store.getters.ductus_arantii;
477
-        var ductusArantiiOptionsName = "";
478
-        for (let i = 0; i < ductusArantiiOptions.length; i++){
479
-          if(ductusArantiiOptions[i].id == id){
480
-            ductusArantiiOptionsName =    ductusArantiiOptions[i].name
481
-          }
463
+      }
464
+      return venousCatheterizationPartName
465
+    }, 
466
+getDuctusArantii: function (id) {
467
+      var ductusArantiiOptions = this.$store.getters.ductus_arantii
468
+        var ductusArantiiOptionsName = '';
469
+      for (let i = 0; i < ductusArantiiOptions.length; i++) {
470
+        if (ductusArantiiOptions[i].id == id) {
471
+          ductusArantiiOptionsName = ductusArantiiOptions[i].name
482 472
         }
483
-        return ductusArantiiOptionsName
484
-      },getEmergencyTreatment:function (id) {
485
-        var emergencyTreatmentOptions = this.$store.getters.emergency_treatment;
486
-        var emergencyTreatmentName = "";
487
-        for (let i = 0; i < emergencyTreatmentOptions.length; i++){
488
-          if(emergencyTreatmentOptions[i].id == id){
489
-            emergencyTreatmentName =    emergencyTreatmentOptions[i].name
490
-          }
473
+      }
474
+      return ductusArantiiOptionsName
475
+    }, 
476
+getEmergencyTreatment: function (id) {
477
+      var emergencyTreatmentOptions = this.$store.getters.emergency_treatment
478
+        var emergencyTreatmentName = '';
479
+      for (let i = 0; i < emergencyTreatmentOptions.length; i++) {
480
+        if (emergencyTreatmentOptions[i].id == id) {
481
+          emergencyTreatmentName = emergencyTreatmentOptions[i].name
491 482
         }
492
-        return emergencyTreatmentName
493
-
494
-      },getSkin:function (id) {
495
-        var skinOptions = this.$store.getters.skin;
496
-        var skinName = "";
497
-        for (let i = 0; i < skinOptions.length; i++){
498
-          if(skinOptions[i].id == id){
499
-            skinName =    skinOptions[i].name
500
-          }
483
+      }
484
+      return emergencyTreatmentName
485
+    },
486
+ getSkin: function (id) {
487
+      var skinOptions = this.$store.getters.skin
488
+        var skinName = '';
489
+      for (let i = 0; i < skinOptions.length; i++) {
490
+        if (skinOptions[i].id == id) {
491
+          skinName = skinOptions[i].name
501 492
         }
502
-        return skinName
503
-
504
-      }
505
-      // setRecord(record) {
506
-      //   if (record == null) {
507
-      //     this.info1[0].content = "0"
508
-      //     this.info1[1].content = "0"
509
-      //     this.info1[2].content = "0"
510
-      //     // this.info1[3].content = ""
511
-
512
-      //     this.info2[0].content = "0"
513
-      //     this.info2[1].content = "0"
514
-      //     this.info2[2].content = ""
515
-      //     this.info2[3].content = ""
516
-
517
-      //     this.info3[0].content = "0"
518
-      //     this.info3[1].content = "0"
519
-      //     this.info3[2].content = ""
520
-      //     this.info3[3].content = ""
521
-
522
-      //     this.note = ""
523
-
524
-      //   } else {
525
-      //     this.info1[0].content = record.weight_before
526
-      //     this.info1[1].content = record.systolic_blood_pressure
527
-      //     this.info1[2].content = record.last_post_dialysis
528
-      //     // this.info1[3].content = ""
529
-
530
-      //     this.info2[0].content = record.additional_weight
531
-      //     this.info2[1].content = record.diastolic_blood_pressure
532
-      //     this.info2[2].content = record.dialysis_interphase
533
-      //     this.info2[3].content = record.catheter
534
-
535
-      //     this.info3[0].content = record.temperature
536
-      //     this.info3[1].content = record.breathing_rate
537
-      //     this.info3[2].content = record.symptom_before_dialysis
538
-      //     this.info3[3].content = record.complication
539
-
540
-      //     this.note = record.remark
541
-      //   }
542
-      // }
493
+      }
494
+      return skinName
543 495
     }
496
+    // setRecord(record) {
497
+    //   if (record == null) {
498
+    //     this.info1[0].content = "0"
499
+    //     this.info1[1].content = "0"
500
+    //     this.info1[2].content = "0"
501
+    //     // this.info1[3].content = ""
502
+
503
+    //     this.info2[0].content = "0"
504
+    //     this.info2[1].content = "0"
505
+    //     this.info2[2].content = ""
506
+    //     this.info2[3].content = ""
507
+
508
+    //     this.info3[0].content = "0"
509
+    //     this.info3[1].content = "0"
510
+    //     this.info3[2].content = ""
511
+    //     this.info3[3].content = ""
512
+
513
+    //     this.note = ""
514
+
515
+    //   } else {
516
+    //     this.info1[0].content = record.weight_before
517
+    //     this.info1[1].content = record.systolic_blood_pressure
518
+    //     this.info1[2].content = record.last_post_dialysis
519
+    //     // this.info1[3].content = ""
520
+
521
+    //     this.info2[0].content = record.additional_weight
522
+    //     this.info2[1].content = record.diastolic_blood_pressure
523
+    //     this.info2[2].content = record.dialysis_interphase
524
+    //     this.info2[3].content = record.catheter
525
+
526
+    //     this.info3[0].content = record.temperature
527
+    //     this.info3[1].content = record.breathing_rate
528
+    //     this.info3[2].content = record.symptom_before_dialysis
529
+    //     this.info3[3].content = record.complication
530
+
531
+    //     this.note = record.remark
532
+    //   }
533
+    // }
544 534
   }
535
+}
545 536
 </script>
546 537
 
547 538
 <style rel="stylesheet/scss" lang="scss" scoped>
548 539
 </style>
549
-
550
-
551
-

+ 47 - 51
src/pages/main/today/dialysisComputer.vue View File

@@ -30,71 +30,67 @@
30 30
 
31 31
       </ul>
32 32
 
33
-
34 33
     </div>
35 34
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
36 35
   </div>
37 36
 </template>
38 37
 
39 38
 <script>
40
-  import {parseTime} from '@/utils'
39
+import {parseTime} from '@/utils'
41 40
 
42
-  export default {
43
-    name: 'DialysisComputer',
44
-    data () {
45
-      return {
46
-        title: '透析上机 ',
41
+export default {
42
+  name: 'DialysisComputer',
43
+  data () {
44
+    return {
45
+      title: '透析上机 '
46
+    }
47
+  },
48
+  props: {
49
+    record: {
50
+      type: Object
51
+    },
52
+    admin_map: {
53
+      type: Object
54
+    },
55
+    device_number_map: {
56
+      type: Object
57
+    }
58
+  },
59
+  computed: {
60
+    device_number: function () {
61
+      if (this.record == null || this.record.id == '') {
62
+        return '-'
47 63
       }
64
+      return this.device_number_map[this.record.bed_id] == null ? '' : this.device_number_map[this.record.bed_id].number
48 65
     },
49
-    props: {
50
-      record: {
51
-        type: Object,
52
-      },
53
-      admin_map: {
54
-        type: Object,
55
-      },
56
-      device_number_map: {
57
-        type: Object,
66
+    nurse: function () {
67
+      if (this.record == null || this.record.id == '') {
68
+        return '-'
58 69
       }
70
+      return this.admin_map[this.record.start_nurse] == null ? '' : this.admin_map[this.record.start_nurse].name
59 71
     },
60
-    computed: {
61
-      device_number: function () {
62
-        if (this.record == null || this.record.id == '') {
63
-          return '-'
64
-        }
65
-        return this.device_number_map[this.record.bed_id] == null ? '' : this.device_number_map[this.record.bed_id].number
66
-      },
67
-      nurse: function () {
68
-        if (this.record == null || this.record.id == '') {
69
-          return '-'
70
-        }
71
-        return this.admin_map[this.record.start_nurse] == null ? '' : this.admin_map[this.record.start_nurse].name
72
-      },
73
-      stage: function () {
74
-        if (this.record == null || this.record.id == '') {
75
-          return '未上机'
76
-        }
77
-        return this.record.stage == 1 ? '已上机' : '已下机'
78
-      }, start_time: function () {
79
-        if (this.record == null || this.record.id == '') {
80
-          return '-'
81
-        }
82
-        return parseTime(this.record.start_time, '{y}年{m}月{d}日 {h}时{i}分')
83
-
84
-      },puncture_nurse:function () {
85
-        if (this.record == null || this.record.id == '') {
86
-          return '-'
87
-        }
88
-        return this.admin_map[this.record.puncture_nurse] == null ? '' : this.admin_map[this.record.puncture_nurse].name
89
-
72
+    stage: function () {
73
+      if (this.record == null || this.record.id == '') {
74
+        return '未上机'
90 75
       }
76
+      return this.record.stage == 1 ? '已上机' : '已下机'
91 77
     },
92
-    methods: {}
93
-  }
78
+start_time: function () {
79
+      if (this.record == null || this.record.id == '') {
80
+        return '-'
81
+      }
82
+      return parseTime(this.record.start_time, '{y}年{m}月{d}日 {h}时{i}分')
83
+    }, 
84
+puncture_nurse: function () {
85
+      if (this.record == null || this.record.id == '') {
86
+        return '-'
87
+      }
88
+      return this.admin_map[this.record.puncture_nurse] == null ? '' : this.admin_map[this.record.puncture_nurse].name
89
+    }
90
+  },
91
+  methods: {}
92
+}
94 93
 </script>
95 94
 
96 95
 <style rel="stylesheet/scss" lang="scss" scoped>
97 96
 </style>
98
-
99
-
100
-

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

@@ -18,7 +18,7 @@
18 18
           <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
19 19
           <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
20 20
           <th v-if="isShow('置换量')"  width="92px">置换量(L)</th>
21
-          
21
+
22 22
           <th v-if="isShow('电导度')"  width="92px">电导度(mS/m)</th>
23 23
           <th v-if="isShow('置换液流量')"  width="92px">置换液流量(ml/h)</th>
24 24
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
@@ -54,46 +54,46 @@
54 54
 </template>
55 55
 
56 56
 <script>
57
-import { parseTime } from "@/utils";
57
+import { parseTime } from '@/utils';
58 58
 
59 59
 export default {
60
-  name: "statOrder",
61
-  data() {
60
+  name: 'statOrder',
61
+  data () {
62 62
     return {
63
-      title: "透析监测 ",
63
+      title: '透析监测 ',
64 64
       template_id: 0,
65 65
       tableDate: []
66
-    };
66
+    }
67 67
   },
68
-   created () {
68
+  created () {
69 69
     this.template_id = this.$store.getters.user.template_info.template_id
70
-   },
70
+  },
71 71
   methods: {
72
-    isShow(name){
72
+    isShow (name) {
73 73
       var filedList = this.$store.getters.user.fileds
74 74
 
75
-      for (let i = 0; i < filedList.length; i++){
76
-        if(filedList[i].module == 4 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
75
+      for (let i = 0; i < filedList.length; i++) {
76
+        if (filedList[i].module == 4 && filedList[i].filed_name_cn == name && filedList[i].is_show == 1) {
77 77
           return true
78 78
         }
79 79
       }
80 80
       return false
81 81
     },
82
-    setRecords(records) {
82
+    setRecords (records) {
83 83
       if (records == null) {
84
-        records = [];
84
+        records = []
85 85
       }
86
-      this.tableDate.splice(0, this.tableDate.length);
87
-      this.tableDate.push(...records);
86
+      this.tableDate.splice(0, this.tableDate.length)
87
+      this.tableDate.push(...records)
88 88
     },
89
-    parseTime(time, layout) {
90
-      return parseTime(time, layout);
89
+    parseTime (time, layout) {
90
+      return parseTime(time, layout)
91 91
     },
92
-    addRecords(records) {
93
-      this.tableDate.push(...records);
92
+    addRecords (records) {
93
+      this.tableDate.push(...records)
94 94
     }
95 95
   }
96
-};
96
+}
97 97
 </script>
98 98
 
99 99
 <style rel="stylesheet/scss" lang="scss" scoped>
@@ -137,6 +137,3 @@ export default {
137 137
 
138 138
 }
139 139
 </style>
140
-
141
-
142
-

+ 23 - 25
src/pages/main/today/dialysisOff.vue View File

@@ -21,57 +21,55 @@
21 21
 </template>
22 22
 
23 23
 <script>
24
-  import { parseTime } from "@/utils";
24
+import { parseTime } from '@/utils';
25 25
 
26
-  export default {
27
-  name: "DialysisComputer",
28
-  data() {
26
+export default {
27
+  name: 'DialysisComputer',
28
+  data () {
29 29
     return {
30
-      title: "透析下机 ",
31
-    };
30
+      title: '透析下机 '
31
+    }
32 32
   },
33 33
   props: {
34 34
     record: {
35 35
       type: Object
36 36
     },
37 37
     admin_map: {
38
-      type: Object,
39
-    },
38
+      type: Object
39
+    }
40 40
   },
41 41
   computed: {
42
-    stage: function() {
43
-      if (this.record == null || this.record.id == "") {
44
-        return "未上机"
42
+    stage: function () {
43
+      if (this.record == null || this.record.id == '') {
44
+        return '未上机'
45 45
       }
46
-      return this.record.stage == 1 ? "未下机" : "已下机"
46
+      return this.record.stage == 1 ? '未下机' : '已下机'
47 47
     },
48
-    nurse: function() {
48
+    nurse: function () {
49 49
       if (this.record == null || this.record.id == '') {
50
-        return "-"
50
+        return '-'
51 51
       } else if (this.record.stage == 1) {
52
-        return "-"
52
+        return '-'
53 53
       } else {
54
-        return this.admin_map[this.record.finish_nurse] == null ? "" : this.admin_map[this.record.finish_nurse].name
54
+        return this.admin_map[this.record.finish_nurse] == null ? '' : this.admin_map[this.record.finish_nurse].name
55 55
       }
56
-    },end_time:function () {
56
+    }, 
57
+end_time: function () {
57 58
       if (this.record == null || this.record.id == '') {
58
-        return "-"
59
+        return '-'
59 60
       } else if (this.record.stage == 1) {
60
-        return "-"
61
+        return '-'
61 62
       } else {
62
-        return parseTime(this.record.end_time, "{y}年{m}月{d}日 {h}时{i}分");
63
+        return parseTime(this.record.end_time, '{y}年{m}月{d}日 {h}时{i}分')
63 64
 
64 65
       }
65
-    },
66
+    }
66 67
   },
67 68
   methods: {
68 69
 
69 70
   }
70
-};
71
+}
71 72
 </script>
72 73
 
73 74
 <style rel="stylesheet/scss" lang="scss" scoped>
74 75
 </style>
75
-
76
-
77
-

+ 58 - 61
src/pages/main/today/doubleCheck.vue View File

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
    <div class="plate-box">
3
-    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2> 
4
-    <div class="plate " >   
3
+    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
4
+    <div class="plate " >
5 5
         <ul>
6 6
              <li style="height: 0.6rem;">
7 7
                 <label>透析物品核查 : </label>
@@ -46,15 +46,15 @@
46 46
         </ul>
47 47
     </div>
48 48
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
49
-  </div>    
49
+  </div>
50 50
 </template>
51 51
 
52 52
 <script>
53 53
 export default {
54
-  name: "DoubleCheck",
55
-  data() {
54
+  name: 'DoubleCheck',
55
+  data () {
56 56
     return {
57
-      title: "双人查对 ",
57
+      title: '双人查对 '
58 58
       // note: "无明显异常",
59 59
       // doctor: "刘小军  医生",
60 60
       // info1: [
@@ -72,86 +72,86 @@ export default {
72 72
       // info3: [
73 73
       //   { value: "1", label: " ", content: "", unit: "" },
74 74
       // ]
75
-    };
75
+    }
76 76
   },
77 77
   props: {
78 78
     record: {
79
-      type: Object,
79
+      type: Object
80 80
     }
81 81
   },
82 82
   computed: {
83
-    dialysis_item_check: function() {
84
-      if (this.record == null || this.record.id == "") {
85
-        return ""
83
+    dialysis_item_check: function () {
84
+      if (this.record == null || this.record.id == '') {
85
+        return ''
86 86
       }
87
-      return this.record.dialysis_item_check == 1 ? "正确" : "错误"
87
+      return this.record.dialysis_item_check == 1 ? '正确' : '错误'
88 88
     },
89
-    dialysis_parameter_check: function() {
90
-      if (this.record == null || this.record.id == "") {
91
-        return ""
89
+    dialysis_parameter_check: function () {
90
+      if (this.record == null || this.record.id == '') {
91
+        return ''
92 92
       }
93
-      return this.record.dialysis_parameter_check == 1 ? "正确" : "错误"
93
+      return this.record.dialysis_parameter_check == 1 ? '正确' : '错误'
94 94
     },
95
-    vascular_access_verification: function() {
96
-      if (this.record == null || this.record.id == "") {
97
-        return ""
95
+    vascular_access_verification: function () {
96
+      if (this.record == null || this.record.id == '') {
97
+        return ''
98 98
       }
99
-      return this.record.vascular_access_verification == 1 ? "正确" : "错误"
99
+      return this.record.vascular_access_verification == 1 ? '正确' : '错误'
100 100
     },
101
-    pipeline_connection_check: function() {
102
-      if (this.record == null || this.record.id == "") {
103
-        return ""
101
+    pipeline_connection_check: function () {
102
+      if (this.record == null || this.record.id == '') {
103
+        return ''
104 104
       }
105
-      return this.record.pipeline_connection_check == 1 ? "正确" : "错误"
105
+      return this.record.pipeline_connection_check == 1 ? '正确' : '错误'
106 106
     },
107
-    dialysis_item_desc_title: function() {
108
-      if (this.record == null || this.record.id == "") {
109
-        return ""
107
+    dialysis_item_desc_title: function () {
108
+      if (this.record == null || this.record.id == '') {
109
+        return ''
110 110
       }
111
-      return this.record.dialysis_item_check == 1 ? "" : "错误描述 : "
111
+      return this.record.dialysis_item_check == 1 ? '' : '错误描述 : '
112 112
     },
113
-    dialysis_parameter_desc_title: function() {
114
-      if (this.record == null || this.record.id == "") {
115
-        return ""
113
+    dialysis_parameter_desc_title: function () {
114
+      if (this.record == null || this.record.id == '') {
115
+        return ''
116 116
       }
117
-      return this.record.dialysis_parameter_check == 1 ? "" : "错误描述 : "
117
+      return this.record.dialysis_parameter_check == 1 ? '' : '错误描述 : '
118 118
     },
119
-    vascular_access_desc_title: function() {
120
-      if (this.record == null || this.record.id == "") {
121
-        return ""
119
+    vascular_access_desc_title: function () {
120
+      if (this.record == null || this.record.id == '') {
121
+        return ''
122 122
       }
123
-      return this.record.vascular_access_verification == 1 ? "" : "错误描述 : "
123
+      return this.record.vascular_access_verification == 1 ? '' : '错误描述 : '
124 124
     },
125
-    pipeline_connection_desc_title: function() {
126
-      if (this.record == null || this.record.id == "") {
127
-        return ""
125
+    pipeline_connection_desc_title: function () {
126
+      if (this.record == null || this.record.id == '') {
127
+        return ''
128 128
       }
129
-      return this.record.pipeline_connection_check == 1 ? "" : "错误描述 : "
129
+      return this.record.pipeline_connection_check == 1 ? '' : '错误描述 : '
130 130
     },
131 131
 
132
-    dialysis_item_desc: function() {
133
-      if (this.record == null || this.record.id == "") {
134
-        return ""
132
+    dialysis_item_desc: function () {
133
+      if (this.record == null || this.record.id == '') {
134
+        return ''
135 135
       }
136
-      return this.record.dialysis_item_check == 1 ? "" : this.record.dialysis_item_desc
136
+      return this.record.dialysis_item_check == 1 ? '' : this.record.dialysis_item_desc
137 137
     },
138
-    dialysis_parameter_desc: function() {
139
-      if (this.record == null || this.record.id == "") {
140
-        return ""
138
+    dialysis_parameter_desc: function () {
139
+      if (this.record == null || this.record.id == '') {
140
+        return ''
141 141
       }
142
-      return this.record.dialysis_parameter_check == 1 ? "" : this.record.dialysis_parameter_desc
142
+      return this.record.dialysis_parameter_check == 1 ? '' : this.record.dialysis_parameter_desc
143 143
     },
144
-    vascular_access_desc: function() {
145
-      if (this.record == null || this.record.id == "") {
146
-        return ""
144
+    vascular_access_desc: function () {
145
+      if (this.record == null || this.record.id == '') {
146
+        return ''
147 147
       }
148
-      return this.record.vascular_access_verification == 1 ? "" : this.record.vascular_access_desc
148
+      return this.record.vascular_access_verification == 1 ? '' : this.record.vascular_access_desc
149 149
     },
150
-    pipeline_connection_desc: function() {
151
-      if (this.record == null || this.record.id == "") {
152
-        return ""
150
+    pipeline_connection_desc: function () {
151
+      if (this.record == null || this.record.id == '') {
152
+        return ''
153 153
       }
154
-      return this.record.pipeline_connection_check == 1 ? "" : this.record.pipeline_connection_desc
154
+      return this.record.pipeline_connection_check == 1 ? '' : this.record.pipeline_connection_desc
155 155
     }
156 156
   },
157 157
   methods: {
@@ -171,7 +171,7 @@ export default {
171 171
     //     this.info2[1].content = ""
172 172
     //     this.info2[2].content = ""
173 173
     //     this.info2[3].content = ""
174
-        
174
+
175 175
     //   } else {
176 176
     //     this.info1[0].content = record.dialysis_item_check == 1 ? "正确" : "错误"
177 177
     //     this.info1[1].content = record.dialysis_parameter_check == 1 ? "正确" : "错误"
@@ -190,12 +190,9 @@ export default {
190 190
     //   }
191 191
     // }
192 192
   }
193
-};
193
+}
194 194
 </script>
195 195
 
196 196
 <style rel="stylesheet/scss" lang="scss" scoped>
197 197
 
198 198
 </style>
199
-
200
-
201
-

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

@@ -47,16 +47,16 @@
47 47
 </template>
48 48
 
49 49
 <script>
50
-import { parseTime } from "@/utils";
50
+import { parseTime } from '@/utils';
51 51
 
52 52
 export default {
53
-  name: "statOrder",
54
-  data() {
53
+  name: 'statOrder',
54
+  data () {
55 55
     return {
56
-      title: "临时医嘱 ",
56
+      title: '临时医嘱 ',
57 57
       template_id: 0,
58
-      tableDate: [],
59
-    };
58
+      tableDate: []
59
+    }
60 60
   },
61 61
   props: {
62 62
     doctor_map: {
@@ -69,87 +69,87 @@ export default {
69 69
       }
70 70
     }
71 71
   },
72
-   created () {
73
-      this.template_id = this.$store.getters.user.template_info.template_id
74
-    },
72
+  created () {
73
+    this.template_id = this.$store.getters.user.template_info.template_id
74
+  },
75 75
   methods: {
76
-    setAdvices(advices) {
76
+    setAdvices (advices) {
77 77
       if (advices == null) {
78
-        advices = [];
78
+        advices = []
79 79
       }
80
-      this.tableDate.splice(0, this.tableDate.length);
81
-      this.tableDate.push(...advices);
80
+      this.tableDate.splice(0, this.tableDate.length)
81
+      this.tableDate.push(...advices)
82 82
     },
83
-    parseTime(time, layout) {
83
+    parseTime (time, layout) {
84 84
       if (time == 0) {
85
-        return "";
85
+        return '';
86 86
       }
87
-      return parseTime(time, layout);
87
+      return parseTime(time, layout)
88 88
     },
89
-    createMedicalOrder(row) {
89
+    createMedicalOrder (row) {
90 90
       if (row.parent_id > 0) {
91
-        var spliceIndex = -1;
91
+        var spliceIndex = -1
92 92
         for (let index = this.tableDate.length - 1; ; index--) {
93 93
           if (this.tableDate[index].parent_id === row.parent_id) {
94
-            spliceIndex = index;
94
+            spliceIndex = index
95 95
             break;
96 96
           } else if (this.tableDate[index].id === row.parent_id) {
97
-            spliceIndex = index;
97
+            spliceIndex = index
98 98
             break;
99 99
           }
100 100
         }
101 101
         if (spliceIndex > -1) {
102
-          spliceIndex += 1;
102
+          spliceIndex += 1
103 103
           if (spliceIndex === this.tableDate.length) {
104
-            this.tableDate.push(row);
104
+            this.tableDate.push(row)
105 105
           } else {
106
-            var swapData = this.tableDate.splice(spliceIndex);
107
-            this.tableDate.push(row);
108
-            this.tableDate = this.tableDate.concat(swapData);
106
+            var swapData = this.tableDate.splice(spliceIndex)
107
+            this.tableDate.push(row)
108
+            this.tableDate = this.tableDate.concat(swapData)
109 109
           }
110 110
         }
111 111
       } else {
112
-        this.tableDate.unshift(row);
112
+        this.tableDate.unshift(row)
113 113
       }
114 114
     },
115
-    delMedicalOrder(row) {
115
+    delMedicalOrder (row) {
116 116
       if (row.parent_id > 0) {
117
-        var rslen = this.tableDate.length;
117
+        var rslen = this.tableDate.length
118 118
         for (let i = 0; i < rslen; i++) {
119 119
           if (this.tableDate[i].id == row.id) {
120
-            this.tableDate.splice(i, 1);
120
+            this.tableDate.splice(i, 1)
121 121
             break;
122 122
           }
123 123
         }
124 124
       } else {
125
-        var resetTableData = this.tableDate;
126
-        this.tableDate = [];
127
-        var that = this;
128
-        var rslen = resetTableData.length;
125
+        var resetTableData = this.tableDate
126
+        this.tableDate = []
127
+        var that = this
128
+        var rslen = resetTableData.length
129 129
         for (let i = 0; i < rslen; i++) {
130 130
           if (
131 131
             resetTableData[i].id != row.id &&
132 132
             resetTableData[i].parent_id != row.id
133 133
           ) {
134
-            that.tableDate.push(resetTableData[i]);
134
+            that.tableDate.push(resetTableData[i])
135 135
           }
136 136
         }
137 137
       }
138 138
     },
139
-    executionMedicalOrder(row) {
140
-      var alen = this.tableDate.length;
139
+    executionMedicalOrder (row) {
140
+      var alen = this.tableDate.length
141 141
       for (let index = 0; index < alen; index++) {
142 142
         if (this.tableDate[index].id == row.id) {
143
-          this.tableDate[index].execution_state = 1;
144
-          this.tableDate[index].execution_staff = row.execution_staff;
145
-          this.tableDate[index].execution_time = row.execution_time;
146
-          this.tableDate[index].checker = row.checker;
143
+          this.tableDate[index].execution_state = 1
144
+          this.tableDate[index].execution_staff = row.execution_staff
145
+          this.tableDate[index].execution_time = row.execution_time
146
+          this.tableDate[index].checker = row.checker
147 147
           break;
148 148
         }
149 149
       }
150 150
     }
151 151
   }
152
-};
152
+}
153 153
 </script>
154 154
 
155 155
 <style rel="stylesheet/scss" lang="scss" scoped>
@@ -189,6 +189,3 @@ export default {
189 189
   }
190 190
 }
191 191
 </style>
192
-
193
-
194
-

+ 19 - 20
src/pages/main/today/treatmentOf.vue View File

@@ -1,7 +1,8 @@
1 1
 <template>
2 2
    <div class="plate-box">
3
-    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2> 
4
-    <div class="plate " >   
3
+
4
+    <h2 class="title"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
5
+    <div class="plate " >
5 6
         <ul>
6 7
              <li>
7 8
                 <label>透后宣教 : </label>
@@ -14,40 +15,41 @@
14 15
         </ul>
15 16
     </div>
16 17
     <!-- <div class="note">处方医生 : {{doctor}}</div> -->
17
-  </div>    
18
+
19
+  </div>
18 20
 </template>
19 21
 
20 22
 <script>
21 23
 export default {
22
-  name: "DialysisPrescription",
23
-  data() {
24
+  name: 'DialysisPrescription',
25
+  data () {
24 26
     return {
25
-      title: "治疗小结  ",
26
-      doctor: "刘小花  护士",
27
+      title: '治疗小结  ',
28
+      doctor: '刘小花  护士'
27 29
       // info1: [
28 30
       //   { value: "1", label: "透后宣教 : ", content: "", unit: "" },
29 31
       //   { value: "1", label: "透析小结 : ", content: "", unit: "" }
30 32
       // ]
31
-    };
33
+    }
32 34
   },
33 35
   props: {
34 36
     record: {
35
-      type: Object,
37
+      type: Object
36 38
     }
37 39
   },
38 40
   computed: {
39
-    mission: function() {
40
-      if (this.record == null || this.record.id == "") {
41
-        return ""
41
+    mission: function () {
42
+      if (this.record == null || this.record.id == '') {
43
+        return ''
42 44
       }
43 45
       return this.record.mission
44 46
     },
45
-    dialysis_summary: function() {
46
-      if (this.record == null || this.record.id == "") {
47
-        return ""
47
+    dialysis_summary: function () {
48
+      if (this.record == null || this.record.id == '') {
49
+        return ''
48 50
       }
49 51
       return this.record.dialysis_summary
50
-    },
52
+    }
51 53
   },
52 54
   methods: {
53 55
     // setRecord(record) {
@@ -55,11 +57,8 @@ export default {
55 57
     //   this.info1[1].content = record.dialysis_summary
56 58
     // }
57 59
   }
58
-};
60
+}
59 61
 </script>
60 62
 
61 63
 <style rel="stylesheet/scss" lang="scss" scoped>
62 64
 </style>
63
-
64
-
65
-