Browse Source

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

张保健 5 years ago
parent
commit
132caa34fe

+ 1 - 1
build/cdn.json View File

@@ -1,3 +1,3 @@
1 1
 {
2
-  "version": "1.0.98"
2
+  "version": "1.0.104"
3 3
 }

+ 16 - 3
src/pages/main/DialysisArea.vue View File

@@ -65,6 +65,10 @@
65 65
             我的病人
66 66
             <span class="iconfont">&#xe74a;</span>
67 67
           </li>
68
+          <!--<li @click="clearPatient()">-->
69
+            <!--全部病人-->
70
+            <!--<span class="iconfont">&#xe74a;</span>-->
71
+          <!--</li>-->
68 72
 
69 73
         </ul>
70 74
       </div>
@@ -336,6 +340,17 @@ export default {
336 340
     this.timer = null
337 341
   },
338 342
   methods: {
343
+    clearPatient(){
344
+      this.search_keyword = ''
345
+      this.ismypatient = false
346
+      this.$emit('clear_search_keyword')
347
+      this.$store.dispatch('SaveDialysisAreaSelectIndexs', {
348
+        zone: this.zone_selected,
349
+        schedule_type: this.schedual_type_selected,
350
+        schedule_date: this.selected_date,
351
+        ismypatient:   this.ismypatient,
352
+      })
353
+    },
339 354
     mypatient () {
340 355
       this.search_keyword = ''
341 356
       this.ismypatient = true
@@ -366,9 +381,7 @@ export default {
366 381
       })
367 382
     },
368 383
     handleZoneChange: function (index) {
369
-      if(!this.ismypatient){
370
-        this.ismypatient = false
371
-      }
384
+      this.ismypatient = false
372 385
       this.zone_options_visible = false
373 386
       this.zone_selected = index
374 387
       this.$emit('clear_search_keyword')

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

@@ -286,7 +286,7 @@
286 286
             return true
287 287
           }
288 288
         }
289
-        console.log(".")
289
+      
290 290
         return false
291 291
       },
292 292
       commitInfo: function () {

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

@@ -80,6 +80,7 @@
80 80
                     <span>{{advice.advice_name }}</span>
81 81
                     <span v-if="advice.advice_desc">({{ advice.advice_desc }}{{advice.drug_spec_unit}})</span>
82 82
                     <span v-if="advice.prescribing_number">&nbsp;&nbsp;{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
83
+                    <span v-if="advice.single_dose && template_id == 6" >{{advice.single_dose}}{{advice.single_dose_unit}}</span>
83 84
                     <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
84 85
                     <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
85 86
                     <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>

+ 240 - 216
src/pages/main/dialog/PlaneDialog.vue View File

@@ -1,256 +1,281 @@
1 1
 <template>
2
- <div>
2
+  <div>
3 3
     <div class="Dialog" v-show="!selecting">
4
-        <div class="DialogTit">
5
-            <span @click="close()" class="iconfont">&#xe6e9;</span>
6
-            <h1 class="name">透析下机</h1>
7
-            <span class="success" v-if="this.record.state == 1 || this.$store.getters.user.user.id != this.creator"></span>
8
-            <span class="success" @click="modify()" v-if="isPremission|| this.$store.getters.user.user.id == this.creator">修改</span>
4
+      <div class="DialogTit">
5
+        <span @click="close()" class="iconfont">&#xe6e9;</span>
6
+        <h1 class="name">透析下机</h1>
7
+        <span class="success" v-if="this.record.state == 1 || this.$store.getters.user.user.id != this.creator"></span>
8
+        <span class="success" @click="modify()" v-if="isPremission|| this.$store.getters.user.user.id == this.creator">修改</span>
9 9
 
10
-        </div>
10
+      </div>
11 11
 
12
-        <div class="DialogContent ">
13
-          <div class="item" @click="select_nurse">
14
-            <h2 class="name">下机护士</h2>
15
-            <div class="content">
16
-              <span class="text" style="width: 100px">{{ nurse_id == 0 ? '' : admin_map[nurse_id].name }}</span>
17
-              <span class="iconfont">&#xe6f9;</span>
18
-            </div>
12
+      <div class="DialogContent ">
13
+        <div class="item" @click="select_nurse">
14
+          <h2 class="name">下机护士</h2>
15
+          <div class="content">
16
+            <span class="text" style="width: 100px">{{ nurse_id == 0 ? '' : admin_map[nurse_id].name }}</span>
17
+            <span class="iconfont">&#xe6f9;</span>
19 18
           </div>
19
+        </div>
20 20
 
21 21
 
22
-          <div class="item">
23
-            <h2 class="name">下机时间</h2>
24
-            <div class="content">
25
-              <span class="text" style="width: 100px"  @click="selectStartTimeAction">{{ end_time_str }}</span>
26
-              <span class="iconfont">&#xe6f9;</span>
27
-            </div>
22
+        <div class="item">
23
+          <h2 class="name">下机时间</h2>
24
+          <div class="content">
25
+            <span class="text" style="width: 100px" @click="selectStartTimeAction">{{ end_time_str }}</span>
26
+            <span class="iconfont">&#xe6f9;</span>
28 27
           </div>
28
+        </div>
29 29
 
30
-          <div class="perform">
31
-            <button @click="commitInfo" v-show="(record != null && record.id != '' && record.stage == 1)">执行下机</button>
32
-            <button :disabled="true" style="background-color:lightgray;" v-show="(record != null && record.id != '' && record.stage == 2)">已下机</button>
33
-            <button :disabled="true" style="background-color:lightgray;" v-show="record == null || record.id == ''">未上机</button>
34
-          </div>
30
+        <div class="perform">
31
+          <button @click="commitInfo" v-show="(record != null && record.id != '' && record.stage == 1)">执行下机</button>
32
+          <button :disabled="true" style="background-color:lightgray;"
33
+                  v-show="(record != null && record.id != '' && record.stage == 2)">已下机
34
+          </button>
35
+          <button :disabled="true" style="background-color:lightgray;" v-show="record == null || record.id == ''">未上机
36
+          </button>
35 37
         </div>
38
+      </div>
36 39
     </div>
37 40
     <two-menu ref="selector"></two-menu>
38
-   <mt-datetime-picker
39
-     ref="start_time_picker"
40
-     type="datetime"
41
-     @confirm="didSelectStartTime"
42
-     v-model="end_time"
43
-   ></mt-datetime-picker>
41
+    <mt-datetime-picker
42
+      ref="start_time_picker"
43
+      type="datetime"
44
+      @confirm="didSelectStartTime"
45
+      v-model="end_time"
46
+    ></mt-datetime-picker>
44 47
   </div>
45 48
 </template>
46 49
 
47 50
 <script>
48
-  import {
49
-    finish,PostModifyEndDialysis
50
-  } from "@/api/dialysis";
51
-  import { Toast } from 'vant';
51
+  import {finish, PostModifyEndDialysis} from '@/api/dialysis'
52
+  import {Toast} from 'vant'
52 53
   import TwoMenu from './TwoMenu'
53
-  import { parseTime } from "@/utils";
54
+  import {parseTime} from '@/utils'
54 55
 
55 56
   export default {
56
-  name: "PlaneDialog",
57
-  components: {
58
-    TwoMenu
59
-  },
60
-  data() {
61
-    return {
62
-      selecting: false,
63
-      end_time_str: "",
64
-      end_time:new Date(),
65
-      nurse_id: 0,
66
-      isPremission:false,
67
-      creator:0,
68
-    }
69
-  },
70
-  props:{
71
-    patient_prop: {
72
-      type: Object,
73
-    },
74
-    record: {
75
-      type: Object,
76
-    },
77
-    admins: {
78
-      type: Array,
57
+    name: 'PlaneDialog',
58
+    components: {
59
+      TwoMenu
79 60
     },
80
-    admin_map: {
81
-      type: Object,
82
-    },
83
-    special_premission: {
84
-      type: Array,
85
-    },
86
-    last_monitor_record: {
87
-      type: Object,
88
-    }
89
-  },mounted() {
90
-      if(this.last_monitor_record.id == 0){
91
-        this.end_time_str = parseTime(this.end_time, "{y}-{m}-{d} {h}:{i}") + ":00";
92
-      }else{
93
-        this.end_time_str = parseTime(this.last_monitor_record.operate_time, "{y}-{m}-{d} {h}:{i}") + ":00";
61
+    data () {
62
+      return {
63
+        selecting: false,
64
+        end_time_str: '',
65
+        end_time: new Date(),
66
+        nurse_id: 0,
67
+        isPremission: false,
68
+        creator: 0,
94 69
       }
95 70
     },
96
-  created(){
97
-    var date = this.$route.query && this.$route.query.date;
98
-    date *= 1000;
99
-    var newDate = new Date(date);
100
-    var y = newDate.getFullYear();
101
-    var m = newDate.getMonth() + 1;
102
-    var d = newDate.getDate();
103
-    if (isNaN(y) || isNaN(m) || isNaN(d)) {
104
-      newDate = new Date();
105
-      y = newDate.getFullYear();
106
-      m = newDate.getMonth() + 1;
107
-      d = newDate.getDate();
108
-    }
109
-    this.record_date = y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
110
-
111
-    if (this.record == null || this.record.id == '') {
112
-      this.nurse_id = 0
113
-    } else if (this.record.stage == 1) {
114
-      this.nurse_id = this.$store.getters.user.user.id
115
-    } else {
116
-      this.nurse_id = this.record.finish_nurse
117
-    }
71
+    props: {
72
+      prescription_prop: {
73
+        type: Object,
74
+      },
75
+      patient_prop: {
76
+        type: Object,
77
+      },
78
+      record: {
79
+        type: Object,
80
+      },
81
+      admins: {
82
+        type: Array,
83
+      },
84
+      admin_map: {
85
+        type: Object,
86
+      },
87
+      special_premission: {
88
+        type: Array,
89
+      },
90
+      last_monitor_record: {
91
+        type: Object,
92
+      }
93
+    }, mounted () {
94
+      if (this.record.id == '') { //没有上下机记录
95
+        this.end_time_str = parseTime(Date.parse(new Date()) / 1000, '{y}-{m}-{d} {h}:{i}') + ':00'
96
+      } else {
97
+        if (this.record.start_time > 0) {
98
+          if(this.prescription_prop.id != ""){
99
+            let endTime = 0
100
+            endTime = this.record.start_time + this.prescription_prop.dialysis_duration_hour * 3600 + this.prescription_prop.dialysis_duration_minute * 60
101
+            this.end_time_str = parseTime(endTime, '{y}-{m}-{d} {h}:{i}') + ':00'
102
+          }else{
103
+            this.end_time_str = parseTime(Date.parse(new Date()) / 1000, '{y}-{m}-{d} {h}:{i}') + ':00'
104
+          }
105
+          if(this.record.end_time > 0){
106
+            this.end_time_str = parseTime(this.record.end_time , '{y}-{m}-{d} {h}:{i}') + ':00'
107
+          }
108
+        } else {
109
+          this.end_time_str = parseTime(Date.parse(new Date()) / 1000, '{y}-{m}-{d} {h}:{i}') + ':00'
110
+        }
111
+      }
112
+      this.end_time = this.end_time_str
118 113
 
119
-    console.log("下机:"+this.nurse_id)
114
+      // if(this.record.idthis.record.end_time == 0)
120 115
 
121
-    if (this.record.id > 0) {
122
-      for (let i = 0; i < this.special_premission.length; i++) {
123
-        if (this.$store.getters.user.user.id == this.special_premission[i].admin_user_id) {
124
-          this.isPremission = true
125
-        }
116
+      // if(this.last_monitor_record.id == 0){
117
+      //
118
+      //   this.end_time_str = parseTime(this.last_monitor_record.operate_time, "{y}-{m}-{d} {h}:{i}") + ":00";
119
+      // }else{
120
+      //   this.end_time_str = parseTime(this.end_time, "{y}-{m}-{d} {h}:{i}") + ":00";
121
+      //
122
+      // }
123
+    },
124
+    created () {
125
+      var date = this.$route.query && this.$route.query.date
126
+      date *= 1000
127
+      var newDate = new Date(date)
128
+      var y = newDate.getFullYear()
129
+      var m = newDate.getMonth() + 1
130
+      var d = newDate.getDate()
131
+      if (isNaN(y) || isNaN(m) || isNaN(d)) {
132
+        newDate = new Date()
133
+        y = newDate.getFullYear()
134
+        m = newDate.getMonth() + 1
135
+        d = newDate.getDate()
126 136
       }
127
-    }
137
+      this.record_date = y + '-' + (m < 10 ? '0' + m : m) + '-' + (d < 10 ? '0' + d : d)
128 138
 
129
-    if (this.record.id > 0) {
130
-      if (this.record.finish_creator == 0) {
131
-        this.creator = this.record.finish_nurse
139
+      if (this.record == null || this.record.id == '') {
140
+        this.nurse_id = 0
141
+      } else if (this.record.stage == 1) {
142
+        this.nurse_id = this.$store.getters.user.user.id
132 143
       } else {
133
-        this.creator = this.record.finish_creator
144
+        this.nurse_id = this.record.finish_nurse
134 145
       }
135
-    }
136 146
 
147
+      if (this.record.id > 0) {
148
+        for (let i = 0; i < this.special_premission.length; i++) {
149
+          if (this.$store.getters.user.user.id == this.special_premission[i].admin_user_id) {
150
+            this.isPremission = true
151
+          }
152
+        }
153
+      }
137 154
 
138
-  },
139
-  methods: {
140
-    set_last_monitor_record(monitor) {
141
-      this.last_monitor_record = monitor
142
-      this.end_time_str = parseTime(this.last_monitor_record.operate_time, "{y}-{m}-{d} {h}:{i}") + ":00";
143
-    },
144
-    modify(){
145
-      let ParamsQuery = {}
146
-      ParamsQuery['id'] = this.record.id
147
-      ParamsQuery["nurse"] = this.nurse_id
148
-      ParamsQuery["end_time"] = this.end_time_str
149
-      PostModifyEndDialysis(ParamsQuery).then(response => {
150
-        if (response.data.state == 0) {
151
-          Toast.fail(response.data.msg)
152
-          return false
155
+      if (this.record.id > 0) {
156
+        if (this.record.finish_creator == 0) {
157
+          this.creator = this.record.finish_nurse
153 158
         } else {
154
-          Toast.success('修改成功')
155
-          this.$emit('did_off', response.data.data.dialysis_order)
156
-          var record = this.record
157
-          for (const key in response.data.data.dialysis_order) {
158
-            this.$set(record, key, response.data.data.dialysis_order[key])
159
-          }
159
+          this.creator = this.record.finish_creator
160 160
         }
161
-      })
162
-    },
163
-    didSelectStartTime: function(time) {
164
-      this.end_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
161
+      }
162
+
165 163
     },
166
-    selectStartTimeAction: function() {
167
-      if (this.record.id != 0) {
168
-        if(this.record.end_time > 0){
169
-          var creator = 0
170
-          if (this.record.finish_creator == 0) {
171
-            creator = this.record.finish_nurse
164
+    methods: {
165
+      set_last_monitor_record (monitor) {
166
+        this.last_monitor_record = monitor
167
+        this.end_time_str = parseTime(this.last_monitor_record.operate_time, '{y}-{m}-{d} {h}:{i}') + ':00'
168
+      },
169
+      modify () {
170
+        let ParamsQuery = {}
171
+        ParamsQuery['id'] = this.record.id
172
+        ParamsQuery['nurse'] = this.nurse_id
173
+        ParamsQuery['end_time'] = this.end_time_str
174
+        PostModifyEndDialysis(ParamsQuery).then(response => {
175
+          if (response.data.state == 0) {
176
+            Toast.fail(response.data.msg)
177
+            return false
172 178
           } else {
173
-            creator = this.record.finish_creator
179
+            Toast.success('修改成功')
180
+            this.$emit('did_off', response.data.data.dialysis_order)
181
+            var record = this.record
182
+            for (const key in response.data.data.dialysis_order) {
183
+              this.$set(record, key, response.data.data.dialysis_order[key])
184
+            }
174 185
           }
175
-          if (this.$store.getters.user.user.id == creator || this.isPremission) {
176
-            this.$refs.start_time_picker.open()
186
+        })
187
+      },
188
+      didSelectStartTime: function (time) {
189
+        this.end_time_str = parseTime(time, '{y}-{m}-{d} {h}:{i}') + ':00'
190
+      },
191
+      selectStartTimeAction: function () {
192
+        if (this.record.id != 0) {
193
+          if (this.record.end_time > 0) {
194
+            var creator = 0
195
+            if (this.record.finish_creator == 0) {
196
+              creator = this.record.finish_nurse
197
+            } else {
198
+              creator = this.record.finish_creator
199
+            }
200
+            if (this.$store.getters.user.user.id == creator || this.isPremission) {
201
+              this.$refs.start_time_picker.open()
202
+            } else {
203
+              return
204
+            }
177 205
           } else {
178
-            return
206
+            this.$refs.start_time_picker.open()
179 207
           }
180
-        }else{
181
-          this.$refs.start_time_picker.open();
208
+        } else {
209
+          this.$refs.start_time_picker.open()
182 210
         }
183
-      }else{
184
-        this.$refs.start_time_picker.open();
185
-      }
186 211
 
187
-    },
188
-    commitInfo: function () {
189
-      Toast.loading({forbidClick: true, duration: 0})
190
-      let ParamsQuery = {}
191
-      ParamsQuery['patient'] = this.patient_prop.id
192
-      ParamsQuery['record_date'] = this.record_date
193
-      ParamsQuery["nurse"] = this.nurse_id
194
-      ParamsQuery["end_time"] = this.end_time_str
212
+      },
213
+      commitInfo: function () {
214
+        Toast.loading({forbidClick: true, duration: 0})
215
+        let ParamsQuery = {}
216
+        ParamsQuery['patient'] = this.patient_prop.id
217
+        ParamsQuery['record_date'] = this.record_date
218
+        ParamsQuery['nurse'] = this.nurse_id
219
+        ParamsQuery['end_time'] = this.end_time_str
195 220
 
196
-      finish(ParamsQuery).then(response => {
197
-        if (response.data.state == 0) {
198
-          Toast.fail(response.data.msg);
199
-          return false;
200
-        } else {
201
-          Toast.success("下机成功");
202
-          this.$emit('did_off', response.data.data.assessmentAfterDislysis);
203
-          var record = this.record
204
-          for (const key in response.data.data.dialysisOrder) {
205
-            this.$set(record, key, response.data.data.dialysisOrder[key])
206
-            // record[key] = response.data.data.dialysisOrder[key]
207
-          }
208
-          // console.log(this.record)
209
-        }
210
-      });
211
-    },
212
-    close: function() {
213
-      this.$emit('close')
214
-    },
215
-    select_nurse: function() {
216
-      if (this.record != null && this.record.id != '') {
217
-        if(this.record.stage == 1){
218
-          this.selecting = true
219
-          var t = this
220
-          this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, "选择下机护士", "name", "id", function(select_id) {
221
-            console.log("nurse id: ", select_id)
222
-            t.nurse_id = select_id
223
-          }, function() {
224
-            t.selecting = false
225
-          })
226
-        }else{
227
-          var creator = 0
228
-          if (this.record.finish_creator == 0) {
229
-            creator = this.record.finish_nurse
221
+        finish(ParamsQuery).then(response => {
222
+          if (response.data.state == 0) {
223
+            Toast.fail(response.data.msg)
224
+            return false
230 225
           } else {
231
-            creator = this.record.finish_creator
226
+            Toast.success('下机成功')
227
+            this.$emit('did_off', response.data.data.assessmentAfterDislysis)
228
+            var record = this.record
229
+            for (const key in response.data.data.dialysisOrder) {
230
+              this.$set(record, key, response.data.data.dialysisOrder[key])
231
+              // record[key] = response.data.data.dialysisOrder[key]
232
+            }
233
+            // console.log(this.record)
232 234
           }
233
-          if (this.$store.getters.user.user.id == creator || this.isPremission) {
235
+        })
236
+      },
237
+      close: function () {
238
+        this.$emit('close')
239
+      },
240
+      select_nurse: function () {
241
+        if (this.record != null && this.record.id != '') {
242
+          if (this.record.stage == 1) {
234 243
             this.selecting = true
235 244
             var t = this
236
-            this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, "选择下机护士", "name", "id", function(select_id) {
237
-              console.log("nurse id: ", select_id)
245
+            this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, '选择下机护士', 'name', 'id', function (select_id) {
246
+              console.log('nurse id: ', select_id)
238 247
               t.nurse_id = select_id
239
-            }, function() {
248
+            }, function () {
240 249
               t.selecting = false
241 250
             })
242 251
           } else {
243
-            return
252
+            var creator = 0
253
+            if (this.record.finish_creator == 0) {
254
+              creator = this.record.finish_nurse
255
+            } else {
256
+              creator = this.record.finish_creator
257
+            }
258
+            if (this.$store.getters.user.user.id == creator || this.isPremission) {
259
+              this.selecting = true
260
+              var t = this
261
+              this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, '选择下机护士', 'name', 'id', function (select_id) {
262
+                console.log('nurse id: ', select_id)
263
+                t.nurse_id = select_id
264
+              }, function () {
265
+                t.selecting = false
266
+              })
267
+            } else {
268
+              return
269
+            }
244 270
           }
245
-        }
246 271
 
272
+        }
273
+      },
274
+      open: function () {
275
+        this.selecting = false
276
+        this.$refs.selector.hide()
247 277
       }
248
-    },
249
-    open:function(){
250
-      this.selecting = false;
251
-      this.$refs.selector.hide();
252
-    }
253
-  }, watch: {
278
+    }, watch: {
254 279
       'record.stage': function (val) {
255 280
         if (val == 2) {
256 281
           for (let i = 0; i < this.special_premission.length; i++) {
@@ -268,33 +293,32 @@
268 293
         console.log(this.creator)
269 294
         console.log(this.$store.getters.user.user.id)
270 295
 
271
-
272 296
       }
273 297
 
274 298
     }
275
-};
299
+  }
276 300
 </script>
277 301
 
278 302
 <style style="stylesheet/scss" lang="scss" scoped>
279 303
 
280
-.perform{
304
+  .perform{
281 305
   text-align: center;
282 306
   font-size: 0.3rem;
283 307
   padding-top: 2rem;
284 308
   .crew{
285
-    color: $pgh-color;
309
+  color: $pgh-color;
286 310
   }
287 311
   button{
288
-    background:$main-color;
289
-    color: #fff;
290
-    font-size: 0.3rem;
291
-    text-align:center;
292
-    width: 3rem;
293
-    height: 0.7rem;
294
-    line-height: 0.7rem;
295
-    border-radius:4px;
296
-    margin-top:10px;
312
+  background:$main-color;
313
+  color: #fff;
314
+  font-size: 0.3rem;
315
+  text-align:center;
316
+  width: 3rem;
317
+  height: 0.7rem;
318
+  line-height: 0.7rem;
319
+  border-radius:4px;
320
+  margin-top:10px;
321
+  }
297 322
   }
298
-}
299 323
 </style>
300 324
 

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

@@ -1080,14 +1080,14 @@
1080 1080
       },
1081 1081
       commitInfo: function () {
1082 1082
 
1083
-        if(this.$store.getters.user.template_info.template_id == 6) {
1084
-          if (this.dialysisPrescription.mode_id == 2) {
1085
-            if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1086
-              Toast.fail("HDF模式下置换方式和置换量不能为空!")
1087
-              return
1088
-            }
1089
-          }
1090
-        }
1083
+        // if(this.$store.getters.user.template_info.template_id == 6) {
1084
+        //   if (this.dialysisPrescription.mode_id == 2) {
1085
+        //     if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1086
+        //       Toast.fail("HDF模式下置换方式和置换量不能为空!")
1087
+        //       return
1088
+        //     }
1089
+        //   }
1090
+        // }
1091 1091
 
1092 1092
         this.is_pre = 1
1093 1093
         if (this.prescription_prop.id == '') {
@@ -1375,14 +1375,14 @@
1375 1375
 
1376 1376
         }
1377 1377
       }, commitSolutionInfo: function () {
1378
-        if(this.$store.getters.user.template_info.template_id == 6) {
1379
-          if (this.dialysisPrescription.mode_id == 2) {
1380
-            if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1381
-              Toast.fail("HDF模式下置换方式和置换量不能为空!")
1382
-              return
1383
-            }
1384
-          }
1385
-        }
1378
+        // if(this.$store.getters.user.template_info.template_id == 6) {
1379
+        //   if (this.dialysisPrescription.mode_id == 2) {
1380
+        //     if (this.dialysisPrescription.displace_liqui_part == 0 || this.dialysisPrescription.displace_liqui_part == -2 || this.dialysisPrescription.replacement_total == 0 || this.dialysisPrescription.replacement_total == "") {
1381
+        //       Toast.fail("HDF模式下置换方式和置换量不能为空!")
1382
+        //       return
1383
+        //     }
1384
+        //   }
1385
+        // }
1386 1386
         this.is_pre = 2
1387 1387
 
1388 1388
         if (this.prescription_prop.id == '') {
@@ -1933,12 +1933,33 @@
1933 1933
     },
1934 1934
     watch: {
1935 1935
       "dialysisPrescription.anticoagulant_shouji":function(val){
1936
-        console.log(val)
1937
-        this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1936
+         console.log(this.dialysisPrescription.anticoagulant_shouji)
1937
+        console.log(this.dialysisPrescription.anticoagulant_weichi)
1938
+
1939
+        if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_weichi == ""){
1940
+            this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(0)
1941
+          }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_weichi != "" ){
1942
+            this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1943
+          }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_shouji == ""){
1944
+            this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(0)
1945
+          }else if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_shouji != ""){
1946
+            this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(this.dialysisPrescription.anticoagulant_shouji)
1947
+
1948
+          }
1938 1949
 
1939 1950
       }, "dialysisPrescription.anticoagulant_weichi":function(val){
1940
-        console.log(val)
1941
-        this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1951
+        console.log(this.dialysisPrescription.anticoagulant_shouji)
1952
+        console.log(this.dialysisPrescription.anticoagulant_weichi)
1953
+        if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_weichi == ""){
1954
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(0)
1955
+        }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_weichi != "" ){
1956
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(this.dialysisPrescription.anticoagulant_weichi)
1957
+        }else if(this.dialysisPrescription.anticoagulant_shouji != "" && this.dialysisPrescription.anticoagulant_shouji == ""){
1958
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(this.dialysisPrescription.anticoagulant_shouji) + parseInt(0)
1959
+        }else if(this.dialysisPrescription.anticoagulant_shouji == "" && this.dialysisPrescription.anticoagulant_shouji != ""){
1960
+          this.dialysisPrescription.anticoagulant_zongliang = parseInt(0) + parseInt(this.dialysisPrescription.anticoagulant_shouji)
1961
+
1962
+        }
1942 1963
       },
1943 1964
 
1944 1965
       isShowDialog (val) {

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

@@ -186,7 +186,7 @@
186 186
 
187 187
     <van-popup title="透析下机" v-model="menuList[7].showPopup" :overlay="true" :close-on-click-overlay="false">
188 188
       <plane-dialog :patient_prop="patient" :record="dialysis_order" :last_monitor_record="last_monitor_record" :admins="admin_users" :admin_map="admin_user_map"
189
-                    :special_premission="special_premission"
189
+                    :special_premission="special_premission"  :prescription_prop="prescription"
190 190
                     @did_off="closeDialysisOff" @close="closeDialysisOffclose" ref="plane_dialog"></plane-dialog>
191 191
     </van-popup>
192 192
 

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

@@ -25,7 +25,10 @@
25 25
               <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
26 26
               <span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
27 27
               <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
28
-              <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
28
+              <!--<span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>-->
29
+              <!--<span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>-->
30
+              <span v-if="advice.single_dose && template_id == 6" >{{advice.single_dose}}{{advice.single_dose_unit}}</span>
31
+              <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
29 32
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
30 33
               <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
31 34
               <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>