Bladeren bron

修改华侨医院bug

csx 5 jaren geleden
bovenliggende
commit
14bc94e71e

+ 18 - 0
src/api/advice.js Bestand weergeven

111
   })
111
   })
112
 }
112
 }
113
 
113
 
114
+
115
+// export function ModifyExecDoctorAdvice(params){
116
+//   return request({
117
+//     url:'/m/api/delete/subadvice?advice_id='+params,
118
+//     method:'Delete',
119
+//   })
120
+// }
121
+
122
+
123
+export function ModifyExecDoctorAdvice(params){
124
+  return request({
125
+    url:'/m/api/advice/exec/modify',
126
+    method:'Post',
127
+    params:params,
128
+  })
129
+}
130
+
131
+

+ 102 - 101
src/api/dialysis.js Bestand weergeven

1
-import request from "@/utils/request"
1
+import request from '@/utils/request'
2
 
2
 
3
-export function getDialysisScheduals(params) {
4
-    return request({
5
-        url: "/m/api/scheduals",
6
-        method: "get",
7
-        params: params,
8
-    })
3
+export function getDialysisScheduals (params) {
4
+  return request({
5
+    url: '/m/api/scheduals',
6
+    method: 'get',
7
+    params: params,
8
+  })
9
 }
9
 }
10
 
10
 
11
-export function getWaitingScheduals(params) {
12
-    return request({
13
-        url: "/m/api/waiting_scheduals",
14
-        method: "get",
15
-        params: params,
16
-    })
11
+export function getWaitingScheduals (params) {
12
+  return request({
13
+    url: '/m/api/waiting_scheduals',
14
+    method: 'get',
15
+    params: params,
16
+  })
17
 }
17
 }
18
 
18
 
19
-export function getDialysisRecord(params) {
20
-    return request({
21
-        url: "/m/api/dialysis/record",
22
-        method: "get",
23
-        params: params,
24
-    })
19
+export function getDialysisRecord (params) {
20
+  return request({
21
+    url: '/m/api/dialysis/record',
22
+    method: 'get',
23
+    params: params,
24
+  })
25
 }
25
 }
26
 
26
 
27
-export function dialysisGlobalConfig() {
28
-    return request({
29
-        url: "/m/api/dialysisglobalconfig",
30
-        method: "get",
31
-    })
27
+export function dialysisGlobalConfig () {
28
+  return request({
29
+    url: '/m/api/dialysisglobalconfig',
30
+    method: 'get',
31
+  })
32
 }
32
 }
33
 
33
 
34
-
35
-
36
-export function commitTreatmentSummary(params) {
34
+export function commitTreatmentSummary (params) {
37
   return request({
35
   return request({
38
-    url: "/m/api/dialysis/treatmentSummary",
39
-    method: "post",
36
+    url: '/m/api/dialysis/treatmentSummary',
37
+    method: 'post',
40
     params: params,
38
     params: params,
41
 
39
 
42
   })
40
   })
43
 }
41
 }
44
 
42
 
45
-export function commitDoubleCheck(params) {
43
+export function commitDoubleCheck (params) {
46
   return request({
44
   return request({
47
-    url: "/m/api/dialysis/doublecheck",
48
-    method: "post",
45
+    url: '/m/api/dialysis/doublecheck',
46
+    method: 'post',
49
     params: params,
47
     params: params,
50
 
48
 
51
-
52
   })
49
   })
53
 }
50
 }
54
 
51
 
55
-
56
-
57
-export function commitAcceptsAssessment(params) {
52
+export function commitAcceptsAssessment (params) {
58
   return request({
53
   return request({
59
-    url: "/m/api/dialysis/acceptsAssessment",
60
-    method: "post",
54
+    url: '/m/api/dialysis/acceptsAssessment',
55
+    method: 'post',
61
     params: params,
56
     params: params,
62
 
57
 
63
   })
58
   })
64
 }
59
 }
65
 
60
 
66
-
67
-export function finish(params) {
61
+export function finish (params) {
68
   return request({
62
   return request({
69
-    url: "/m/api/dialysis/finish",
70
-    method: "post",
63
+    url: '/m/api/dialysis/finish',
64
+    method: 'post',
71
     params: params,
65
     params: params,
72
   })
66
   })
73
 }
67
 }
74
 
68
 
75
-
76
-
77
-
78
-export function commitDialysisPrescription(params) {
69
+export function commitDialysisPrescription (params) {
79
   console.log(params)
70
   console.log(params)
80
   return request({
71
   return request({
81
-    url: "/m/api/dialysis/dialysisPrescription",
82
-    method: "post",
72
+    url: '/m/api/dialysis/dialysisPrescription',
73
+    method: 'post',
83
     params: params,
74
     params: params,
84
   })
75
   })
85
 }
76
 }
86
 
77
 
87
-
88
-export function commitAssessmentAfterDislysis(params) {
78
+export function commitAssessmentAfterDislysis (params) {
89
   return request({
79
   return request({
90
-    url: "/m/api/dialysis/assessmentAfterDislysis",
91
-    method: "post",
80
+    url: '/m/api/dialysis/assessmentAfterDislysis',
81
+    method: 'post',
92
     params: params,
82
     params: params,
93
   })
83
   })
94
 }
84
 }
95
 
85
 
96
-export function addMonitorRecord(params) {
86
+export function addMonitorRecord (params) {
97
   return request({
87
   return request({
98
-    url: "/m/api/monitor/add",
99
-    method: "post",
88
+    url: '/m/api/monitor/add',
89
+    method: 'post',
100
     params: params,
90
     params: params,
101
   })
91
   })
102
 }
92
 }
103
 
93
 
104
-export function editMonitorRecord(params) {
94
+export function editMonitorRecord (params) {
105
   return request({
95
   return request({
106
-    url: "/m/api/monitor/edit",
107
-    method: "post",
96
+    url: '/m/api/monitor/edit',
97
+    method: 'post',
108
     params: params,
98
     params: params,
109
   })
99
   })
110
 }
100
 }
111
 
101
 
112
-export function deleteMonitorRecord(params) {
102
+export function deleteMonitorRecord (params) {
113
   return request({
103
   return request({
114
-    url: "/m/api/monitor/delete",
115
-    method: "post",
104
+    url: '/m/api/monitor/delete',
105
+    method: 'post',
116
     params: params,
106
     params: params,
117
   })
107
   })
118
 }
108
 }
119
 
109
 
120
-export function GetAllZone(params){
110
+export function GetAllZone (params) {
121
   return request({
111
   return request({
122
-    url:'/m/api/dialysis/allzone',
123
-    method:'get',
124
-    params:params
112
+    url: '/m/api/dialysis/allzone',
113
+    method: 'get',
114
+    params: params
125
   })
115
   })
126
 }
116
 }
127
 
117
 
128
-export function getSchedualPatient(params){
118
+export function getSchedualPatient (params) {
129
   return request({
119
   return request({
130
-    url:'/m/api/dialysis/patients',
131
-    method:'get',
132
-    params:params
120
+    url: '/m/api/dialysis/patients',
121
+    method: 'get',
122
+    params: params
133
   })
123
   })
134
 }
124
 }
135
 
125
 
136
-export function postSolution(params){
126
+export function postSolution (params) {
137
   return request({
127
   return request({
138
-    url:'/m/api/solution',
139
-    method:'post',
140
-    params:params
128
+    url: '/m/api/solution',
129
+    method: 'post',
130
+    params: params
141
   })
131
   })
142
 }
132
 }
143
 
133
 
144
-
145
-export function startDialysis(params){
134
+export function startDialysis (params) {
146
   return request({
135
   return request({
147
-    url:'/m/api/dialysis/start',
148
-    method:'post',
149
-    params:params
136
+    url: '/m/api/dialysis/start',
137
+    method: 'post',
138
+    params: params
150
   })
139
   })
151
 }
140
 }
152
 
141
 
153
-
154
-export function getLastAccepts(params){
142
+export function getLastAccepts (params) {
155
   return request({
143
   return request({
156
-    url:'/m/api/accepts/get',
157
-    method:'get',
158
-    params:params
144
+    url: '/m/api/accepts/get',
145
+    method: 'get',
146
+    params: params
159
   })
147
   })
160
 }
148
 }
161
 
149
 
162
-export function getPrintDialysisRecord(params) {
150
+export function getPrintDialysisRecord (params) {
163
   return request({
151
   return request({
164
-    url:'/m/api/print/dialysisorder',
165
-    method:'Get',
166
-    params:params
152
+    url: '/m/api/print/dialysisorder',
153
+    method: 'Get',
154
+    params: params
167
   })
155
   })
168
 }
156
 }
169
 
157
 
170
-export function getUrgentScheduleInitData(params) {
158
+export function getUrgentScheduleInitData (params) {
171
   return request({
159
   return request({
172
     url: '/m/api/schedule/urgentinit',
160
     url: '/m/api/schedule/urgentinit',
173
     method: 'Get',
161
     method: 'Get',
175
   })
163
   })
176
 }
164
 }
177
 
165
 
178
-export function postUrgentSchedule(params) {
166
+export function postUrgentSchedule (params) {
179
   return request({
167
   return request({
180
     url: '/m/api/schedule/urgentadd',
168
     url: '/m/api/schedule/urgentadd',
181
     method: 'post',
169
     method: 'post',
183
   })
171
   })
184
 }
172
 }
185
 
173
 
186
-export function postSign(params) {
174
+export function postSign (params) {
187
   return request({
175
   return request({
188
     url: '/m/api/dialysis/sign',
176
     url: '/m/api/dialysis/sign',
189
     method: 'Post',
177
     method: 'Post',
190
-    params:params
178
+    params: params
191
 
179
 
192
   })
180
   })
193
 }
181
 }
194
 
182
 
195
-
196
-
197
-
198
-
199
-export function GetMonitor(params){
183
+export function GetMonitor (params) {
200
   return request({
184
   return request({
201
-    url:'/m/api/monitor/get',
202
-    method:'get',
203
-    params:params
185
+    url: '/m/api/monitor/get',
186
+    method: 'get',
187
+    params: params
204
   })
188
   })
205
 }
189
 }
206
 
190
 
207
-
208
-export function PostSearch(keyword) {
191
+export function PostSearch (keyword) {
209
   return request({
192
   return request({
210
     url: '/m/api/patients/search?keyword=' + keyword,
193
     url: '/m/api/patients/search?keyword=' + keyword,
211
     method: 'post'
194
     method: 'post'
212
 
195
 
213
   })
196
   })
214
 }
197
 }
198
+
199
+export function PostModifyStartDialysis (params) {
200
+  return request({
201
+    url: '/m/api/startOrder/edit',
202
+    method: 'post',
203
+    params: params,
204
+  })
205
+}
206
+
207
+export function PostModifyEndDialysis (params) {
208
+  return request({
209
+    url: '/m/api/finishOrder/edit',
210
+    method: 'post',
211
+    params: params,
212
+  })
213
+}
214
+
215
+

+ 324 - 204
src/pages/main/dialog/ComputerDialog.vue Bestand weergeven

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

+ 367 - 232
src/pages/main/dialog/DoubleDialog.vue Bestand weergeven

52
 
52
 
53
         </el-form>
53
         </el-form>
54
 
54
 
55
-        <div class="item"  v-if="this.$store.getters.user.template_info.template_id == 2">
55
+        <div class="item" v-if="this.$store.getters.user.template_info.template_id == 2">
56
           <h2 class="name">核对时间</h2>
56
           <h2 class="name">核对时间</h2>
57
           <div class="content">
57
           <div class="content">
58
-            <span class="text" style="width: 100px"  @click="selectCheckTimeAction">{{ check_time_str }}</span>
58
+            <span class="text" style="width: 100px" @click="selectCheckTimeAction">{{ check_time_str }}</span>
59
             <span class="iconfont">&#xe6f9;</span>
59
             <span class="iconfont">&#xe6f9;</span>
60
           </div>
60
           </div>
61
         </div>
61
         </div>
62
 
62
 
63
 
63
 
64
-
65
         <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="130px">
64
         <el-form :inline="true" class="demo-form-inline" :model="doubleReview" label-width="130px">
66
 
65
 
67
           <p style="margin: 10px 0 10px 13px;" v-if="doubleReview.creater != 0">{{getFirstCheckDesc()}} </p>
66
           <p style="margin: 10px 0 10px 13px;" v-if="doubleReview.creater != 0">{{getFirstCheckDesc()}} </p>
92
 </template>
91
 </template>
93
 
92
 
94
 <script>
93
 <script>
95
-import { commitDoubleCheck } from "@/api/dialysis";
96
-import { Toast } from "vant";
97
-import { uParseTime } from "@/utils/tools";
98
-import { parseTime } from "@/utils";
99
-
100
-export default {
101
-  name: "DoubleDialog",
102
-  data() {
103
-    return {
104
-      admin_users: [],
105
-      first_check_isShow: false,
106
-      second_check_isShow: false,
107
-      first_check_desc: "",
108
-      second_check_desc: "",
109
-      doubleReview: {
110
-        dialysis_item_check: "1",
111
-        dialysis_parameter_check: "1",
112
-        vascular_access_verification: "1",
113
-        pipeline_connection_check: "1",
114
-        dialysis_item_desc: "",
115
-        dialysis_parameter_desc: "",
116
-        vascular_access_desc: "",
117
-        pipeline_connection_desc: "",
118
-        collator: "",
119
-        creater: 0,
120
-        modifier: 0,
121
-        created_time: 0,
122
-        updated_time: 0,
123
-        check_time:0,
124
-        first_check_time:0,
94
+  import {commitDoubleCheck} from '@/api/dialysis'
95
+  import {Toast} from 'vant'
96
+  import {uParseTime} from '@/utils/tools'
97
+  import {parseTime} from '@/utils'
98
+
99
+  export default {
100
+    name: 'DoubleDialog',
101
+    data () {
102
+      return {
103
+        admin_users: [],
104
+        first_check_isShow: false,
105
+        second_check_isShow: false,
106
+        first_check_desc: '',
107
+        second_check_desc: '',
108
+        doubleReview: {
109
+          dialysis_item_check: '1',
110
+          dialysis_parameter_check: '1',
111
+          vascular_access_verification: '1',
112
+          pipeline_connection_check: '1',
113
+          dialysis_item_desc: '',
114
+          dialysis_parameter_desc: '',
115
+          vascular_access_desc: '',
116
+          pipeline_connection_desc: '',
117
+          collator: '',
118
+          creater: 0,
119
+          modifier: 0,
120
+          created_time: 0,
121
+          updated_time: 0,
122
+          check_time: 0,
123
+          first_check_time: 0,
124
+        },
125
+        check_time: new Date(),
126
+        check_time_str: '',
127
+        patient: {
128
+          id: 0
129
+        },
130
+        doctor: '',
131
+        record_date: ''
132
+      }
133
+    },
134
+    props: {
135
+      record: {
136
+        type: Object,
137
+        default: () => {
138
+          return {id: 0}
139
+        }
125
       },
140
       },
126
-      check_time:new Date(),
127
-      check_time_str:'',
128
-      patient: {
129
-        id: 0
141
+
142
+      patient_prop: {
143
+        type: Object
130
       },
144
       },
131
-      doctor: "",
132
-      record_date: ""
133
-    };
134
-  },
135
-  props: {
136
-    record: {
137
-      type: Object,
138
-      default: () => {
139
-        return { id: 0 };
145
+      admin_users_prop: {
146
+        type: Array
140
       }
147
       }
141
     },
148
     },
149
+    created () {
150
+      console.log(new Date())
151
+      this.admin_users = this.admin_users_prop
152
+      if (this.record.id == '') {
153
+        this.doubleReview.dialysis_item_check = '1'
154
+        this.doubleReview.dialysis_parameter_check = '1'
155
+        this.doubleReview.vascular_access_verification = '1'
156
+        this.doubleReview.pipeline_connection_check = '1'
157
+        this.doubleReview.dialysis_item_desc = ''
158
+        this.doubleReview.dialysis_parameter_desc = ''
159
+        this.doubleReview.vascular_access_desc = ''
160
+        this.doubleReview.pipeline_connection_desc = ''
142
 
161
 
143
-    patient_prop: {
144
-      type: Object
145
-    },
146
-    admin_users_prop: {
147
-      type: Array
148
-    }
149
-  },
150
-  created() {
151
-    console.log(new Date())
152
-    this.admin_users = this.admin_users_prop;
153
-    if (this.record.id == "") {
154
-      this.doubleReview.dialysis_item_check = "1";
155
-      this.doubleReview.dialysis_parameter_check = "1";
156
-      this.doubleReview.vascular_access_verification = "1";
157
-      this.doubleReview.pipeline_connection_check = "1";
158
-      this.doubleReview.dialysis_item_desc = "";
159
-      this.doubleReview.dialysis_parameter_desc = "";
160
-      this.doubleReview.vascular_access_desc = "";
161
-      this.doubleReview.pipeline_connection_desc = "";
162
-
163
-    } else {
164
-      this.doubleReview.dialysis_item_check =
165
-        this.record.dialysis_item_check + "";
166
-      this.doubleReview.dialysis_parameter_check =
167
-        this.record.dialysis_parameter_check + "";
168
-      this.doubleReview.vascular_access_verification =
169
-        this.record.vascular_access_verification + "";
170
-      this.doubleReview.pipeline_connection_check =
171
-        this.record.pipeline_connection_check + "";
172
-      this.doubleReview.dialysis_item_desc = this.record.dialysis_item_desc;
173
-      this.doubleReview.dialysis_parameter_desc = this.record.dialysis_parameter_desc;
174
-      this.doubleReview.vascular_access_desc = this.record.vascular_access_desc;
175
-      this.doubleReview.pipeline_connection_desc = this.record.pipeline_connection_desc;
176
-
177
-      this.doubleReview.created_time = this.record.created_time;
178
-      this.doubleReview.creater = this.record.creater;
179
-      this.doubleReview.updated_time = this.record.updated_time;
180
-      this.doubleReview.modifier = this.record.modifier;
181
-      this.doubleReview.check_time = this.record.check_time;
182
-      this.doubleReview.first_check_time = this.record.first_check_time;
162
+      } else {
163
+        this.doubleReview.dialysis_item_check =
164
+          this.record.dialysis_item_check + ''
165
+        this.doubleReview.dialysis_parameter_check =
166
+          this.record.dialysis_parameter_check + ''
167
+        this.doubleReview.vascular_access_verification =
168
+          this.record.vascular_access_verification + ''
169
+        this.doubleReview.pipeline_connection_check =
170
+          this.record.pipeline_connection_check + ''
171
+        this.doubleReview.dialysis_item_desc = this.record.dialysis_item_desc
172
+        this.doubleReview.dialysis_parameter_desc = this.record.dialysis_parameter_desc
173
+        this.doubleReview.vascular_access_desc = this.record.vascular_access_desc
174
+        this.doubleReview.pipeline_connection_desc = this.record.pipeline_connection_desc
183
 
175
 
184
-    }
176
+        this.doubleReview.created_time = this.record.created_time
177
+        this.doubleReview.creater = this.record.creater
178
+        this.doubleReview.updated_time = this.record.updated_time
179
+        this.doubleReview.modifier = this.record.modifier
180
+        this.doubleReview.check_time = this.record.check_time
181
+        this.doubleReview.first_check_time = this.record.first_check_time
185
 
182
 
186
-    var date = this.$route.query && this.$route.query.date;
187
-    date *= 1000;
188
-    var newDate = new Date(date);
189
-    var y = newDate.getFullYear();
190
-    var m = newDate.getMonth() + 1;
191
-    var d = newDate.getDate();
192
-    if (isNaN(y) || isNaN(m) || isNaN(d)) {
193
-      newDate = new Date();
194
-      y = newDate.getFullYear();
195
-      m = newDate.getMonth() + 1;
196
-      d = newDate.getDate();
197
-    }
198
-    this.record_date =
199
-      y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
200
-    // this.patient.id = this.patient_prop.id
201
-  },
202
-  methods: {
203
-    didSelectCheckTime: function(time) {
204
-      this.check_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}" +":00");
205
-    },
206
-    selectCheckTimeAction: function() {
207
-        this.$refs.start_time_picker.open();
183
+      }
184
+
185
+      var date = this.$route.query && this.$route.query.date
186
+      date *= 1000
187
+      var newDate = new Date(date)
188
+      var y = newDate.getFullYear()
189
+      var m = newDate.getMonth() + 1
190
+      var d = newDate.getDate()
191
+      if (isNaN(y) || isNaN(m) || isNaN(d)) {
192
+        newDate = new Date()
193
+        y = newDate.getFullYear()
194
+        m = newDate.getMonth() + 1
195
+        d = newDate.getDate()
196
+      }
197
+      this.record_date =
198
+        y + '-' + (m < 10 ? '0' + m : m) + '-' + (d < 10 ? '0' + d : d)
199
+      // this.patient.id = this.patient_prop.id
208
     },
200
     },
209
-    checkInf: function() {},
210
-    // initData(doubleReview, patient, doctor) {
211
-    //   //上层传值
212
-    //   this.patient = patient;
213
-    //   this.doubleReview = doubleReview;
214
-    //   this.doctor = doctor;
215
-    // },
216
-    commitInfo: function() {
217
-      Toast.loading({ forbidClick: true, duration: 0 });
218
-      let ParamsQuery = this.doubleReview;
219
-      // ParamsQuery["patient"] = this.patient.id
220
-      ParamsQuery["patient"] = this.$route.query.patient_id;
221
-      ParamsQuery["record_date"] = this.record_date;
222
-      ParamsQuery["check_time"] = this.check_time_str
223
-      commitDoubleCheck(ParamsQuery).then(response => {
224
-        if (response.data.state == 0) {
225
-          // this.$toast({message: response.data.msg});
226
-          Toast.fail(response.data.msg);
227
-          return false;
201
+    methods: {
202
+      didSelectCheckTime: function (time) {
203
+        this.check_time_str = parseTime(time, '{y}-{m}-{d} {h}:{i}' + ':00')
204
+      },
205
+      selectCheckTimeAction: function () {
206
+        this.$refs.start_time_picker.open()
207
+      },
208
+      checkInf: function () {
209
+      },
210
+      // initData(doubleReview, patient, doctor) {
211
+      //   //上层传值
212
+      //   this.patient = patient;
213
+      //   this.doubleReview = doubleReview;
214
+      //   this.doctor = doctor;
215
+      // },
216
+      commitInfo: function () {
217
+        Toast.loading({forbidClick: true, duration: 0})
218
+        let ParamsQuery = this.doubleReview
219
+        // ParamsQuery["patient"] = this.patient.id
220
+        ParamsQuery['patient'] = this.$route.query.patient_id
221
+        ParamsQuery['record_date'] = this.record_date
222
+        ParamsQuery['check_time'] = this.check_time_str
223
+        commitDoubleCheck(ParamsQuery).then(response => {
224
+          if (response.data.state == 0) {
225
+            // this.$toast({message: response.data.msg});
226
+            Toast.fail(response.data.msg)
227
+            return false
228
+          } else {
229
+            Toast.success('提交成功')
230
+
231
+            this.doubleReview.creater = response.data.data.doubleCheck.creater
232
+            this.doubleReview.check_time =
233
+              response.data.data.doubleCheck.check_time
234
+            this.doubleReview.first_check_time =
235
+              response.data.data.doubleCheck.first_check_time
236
+            this.doubleReview.modifier = response.data.data.doubleCheck.modifier
237
+
238
+            for (const key in response.data.data.doubleCheck) {
239
+              this.record[key] = response.data.data.doubleCheck[key]
240
+            }
241
+            this.$emit('did_update', response.data.data.doubleCheck)
242
+          }
243
+        })
244
+      },
245
+      close: function () {
246
+        this.$emit('close')
247
+      },
248
+      getFirstCheckDesc: function () {
249
+        if (this.doubleReview.first_check_time > 0 && this.doubleReview.check_time > 0) {
250
+          if (this.doubleReview.first_check_time < this.doubleReview.check_time) {
251
+            let time = uParseTime(
252
+              this.doubleReview.first_check_time,
253
+              '{y}-{m}-{d}  {h}:{i}'
254
+            )
255
+            if (this.doubleReview.creater <= 0) {
256
+              return ''
257
+            }
258
+
259
+            var desc = ''
260
+            if (
261
+              this.admin_users == null ||
262
+              typeof this.admin_users.length == 'undefined'
263
+            ) {
264
+              return ''
265
+            }
266
+
267
+            var leng = this.admin_users.length
268
+            if (leng == 0) {
269
+              return ''
270
+            }
271
+
272
+            for (let index = 0; index < leng; index++) {
273
+              if (this.admin_users[index].id == this.doubleReview.creater) {
274
+                let name = this.admin_users[index].name
275
+                desc = '首次核对人员:' + name + ' 首次核对时间:' + time
276
+
277
+                break
278
+              }
279
+            }
280
+            return desc
281
+
282
+          } else {
283
+
284
+            let time = uParseTime(
285
+              this.doubleReview.check_time,
286
+              '{y}-{m}-{d}  {h}:{i}'
287
+            )
288
+            if (this.doubleReview.modifier <= 0) {
289
+              return ''
290
+            }
291
+
292
+            var desc = ''
293
+            if (
294
+              this.admin_users == null ||
295
+              typeof this.admin_users.length == 'undefined'
296
+            ) {
297
+              return ''
298
+            }
299
+
300
+            var leng = this.admin_users.length
301
+            if (leng == 0) {
302
+              return ''
303
+            }
304
+
305
+            for (let index = 0; index < leng; index++) {
306
+              if (this.admin_users[index].id == this.doubleReview.modifier) {
307
+                let name = this.admin_users[index].name
308
+                desc = '首次核对人员:' + name + ' 首次核对时间:' + time
309
+
310
+                break
311
+              }
312
+            }
313
+            return desc
314
+
315
+          }
316
+
228
         } else {
317
         } else {
229
-          Toast.success("提交成功");
230
 
318
 
231
-          this.doubleReview.creater = response.data.data.doubleCheck.creater;
232
-          this.doubleReview.check_time =
233
-            response.data.data.doubleCheck.check_time;
234
-          this.doubleReview.first_check_time =
235
-            response.data.data.doubleCheck.first_check_time;
236
-          this.doubleReview.modifier = response.data.data.doubleCheck.modifier;
319
+          let time = uParseTime(
320
+            this.doubleReview.first_check_time,
321
+            '{y}-{m}-{d}  {h}:{i}'
322
+          )
323
+          if (this.doubleReview.creater <= 0) {
324
+            return ''
325
+          }
237
 
326
 
238
-          for (const key in response.data.data.doubleCheck) {
239
-            this.record[key] = response.data.data.doubleCheck[key];
327
+          var desc = ''
328
+          if (
329
+            this.admin_users == null ||
330
+            typeof this.admin_users.length == 'undefined'
331
+          ) {
332
+            return ''
240
           }
333
           }
241
-          this.$emit("did_update", response.data.data.doubleCheck);
242
-        }
243
-      });
244
-    },
245
-    close: function() {
246
-      this.$emit("close");
247
-    },
248
-    getFirstCheckDesc: function() {
249
-      let time = uParseTime(
250
-        this.doubleReview.first_check_time,
251
-        "{y}-{m}-{d}  {h}:{i}"
252
-      );
253
-      if (this.doubleReview.creater <= 0) {
254
-        return "";
255
-      }
256
 
334
 
257
-      var desc = "";
258
-      if (
259
-        this.admin_users == null ||
260
-        typeof this.admin_users.length == "undefined"
261
-      ) {
262
-        return "";
263
-      }
335
+          var leng = this.admin_users.length
336
+          if (leng == 0) {
337
+            return ''
338
+          }
264
 
339
 
265
-      var leng = this.admin_users.length;
266
-      if (leng == 0) {
267
-        return "";
268
-      }
340
+          for (let index = 0; index < leng; index++) {
341
+            if (this.admin_users[index].id == this.doubleReview.creater) {
342
+              let name = this.admin_users[index].name
343
+              desc = '首次核对人员:' + name + ' 首次核对时间:' + time
269
 
344
 
270
-      for (let index = 0; index < leng; index++) {
271
-        if (this.admin_users[index].id == this.doubleReview.creater) {
272
-          let name = this.admin_users[index].name;
273
-          desc = "首次核对人员:" + name + " 首次核对时间:" + time;
345
+              break
346
+            }
347
+          }
348
+          return desc
274
 
349
 
275
-          break;
276
         }
350
         }
277
-      }
278
-      return desc;
279
-    },
280
-    getScondCheckDesc: function() {
281
-      let time = uParseTime(
282
-        this.doubleReview.check_time,
283
-        "{y}-{m}-{d} {h}:{i}"
284
-      );
285
-      if (this.doubleReview.modifier <= 0) {
286
-        return "";
287
-      }
288
-      var desc = "";
289
-      if (
290
-        this.admin_users == null ||
291
-        typeof this.admin_users.length == "undefined"
292
-      ) {
293
-        return desc;
294
-      }
295
-      var leng = this.admin_users.length;
296
-      if (leng == 0) {
297
-        return desc;
298
-      }
299
-      for (let index = 0; index < leng; index++) {
300
-        if (this.admin_users[index].id == this.doubleReview.modifier) {
301
-          let name = this.admin_users[index].name;
302
-          desc = "第二次核对人员:" + name + " 第二次核对时间:" + time;
303
-          break;
351
+
352
+      },
353
+      getScondCheckDesc: function () {
354
+        if (this.doubleReview.first_check_time > 0 && this.doubleReview.check_time > 0) {
355
+
356
+          if (this.doubleReview.first_check_time < this.doubleReview.check_time) {
357
+            let time = uParseTime(
358
+              this.doubleReview.check_time,
359
+              '{y}-{m}-{d} {h}:{i}'
360
+            )
361
+            if (this.doubleReview.modifier <= 0) {
362
+              return ''
363
+            }
364
+            var desc = ''
365
+            if (
366
+              this.admin_users == null ||
367
+              typeof this.admin_users.length == 'undefined'
368
+            ) {
369
+              return desc
370
+            }
371
+            var leng = this.admin_users.length
372
+            if (leng == 0) {
373
+              return desc
374
+            }
375
+            for (let index = 0; index < leng; index++) {
376
+              if (this.admin_users[index].id == this.doubleReview.modifier) {
377
+                let name = this.admin_users[index].name
378
+                desc = '第二次核对人员:' + name + ' 第二次核对时间:' + time
379
+                break
380
+              }
381
+            }
382
+            return desc
383
+
384
+          } else {
385
+            let time = uParseTime(
386
+              this.doubleReview.first_check_time,
387
+              '{y}-{m}-{d} {h}:{i}'
388
+            )
389
+            if (this.doubleReview.creater <= 0) {
390
+              return ''
391
+            }
392
+            var desc = ''
393
+            if (
394
+              this.admin_users == null ||
395
+              typeof this.admin_users.length == 'undefined'
396
+            ) {
397
+              return desc
398
+            }
399
+            var leng = this.admin_users.length
400
+            if (leng == 0) {
401
+              return desc
402
+            }
403
+            for (let index = 0; index < leng; index++) {
404
+              if (this.admin_users[index].id == this.doubleReview.creater) {
405
+                let name = this.admin_users[index].name
406
+                desc = '第二次核对人员:' + name + ' 第二次核对时间:' + time
407
+                break
408
+              }
409
+            }
410
+            return desc
411
+          }
412
+
413
+        } else {
414
+          let time = uParseTime(
415
+            this.doubleReview.check_time,
416
+            '{y}-{m}-{d} {h}:{i}'
417
+          )
418
+          if (this.doubleReview.modifier <= 0) {
419
+            return ''
420
+          }
421
+          var desc = ''
422
+          if (
423
+            this.admin_users == null ||
424
+            typeof this.admin_users.length == 'undefined'
425
+          ) {
426
+            return desc
427
+          }
428
+          var leng = this.admin_users.length
429
+          if (leng == 0) {
430
+            return desc
431
+          }
432
+          for (let index = 0; index < leng; index++) {
433
+            if (this.admin_users[index].id == this.doubleReview.modifier) {
434
+              let name = this.admin_users[index].name
435
+              desc = '第二次核对人员:' + name + ' 第二次核对时间:' + time
436
+              break
437
+            }
438
+          }
439
+          return desc
304
         }
440
         }
441
+
442
+      },
443
+      getDate: function (val) {
444
+        return parseTime(val, '{y}-{m}-{d} {h}:{i}')
305
       }
445
       }
306
-      return desc;
307
-    },
308
-    getDate: function(val) {
309
-      return parseTime(val, "{y}-{m}-{d} {h}:{i}");
310
-    }
311
-  }, mounted() {
446
+    }, mounted () {
312
 
447
 
313
-    if(this.record.id == 0){
314
-      this.check_time_str = parseTime(this.check_time, "{y}-{m}-{d} {h}:{i}" +":00");
315
-    }else{
316
-      if(this.record.modifier == 0){
317
-        this.check_time_str = parseTime(this.check_time, "{y}-{m}-{d} {h}:{i}"+":00");
448
+      if (this.record.id == 0) {
449
+        this.check_time_str = parseTime(this.check_time, '{y}-{m}-{d} {h}:{i}' + ':00')
450
+      } else {
451
+        if (this.record.modifier == 0) {
452
+          this.check_time_str = parseTime(this.check_time, '{y}-{m}-{d} {h}:{i}' + ':00')
318
 
453
 
319
-      }else{
320
-        this.check_time_str = parseTime(this.record.check_time, "{y}-{m}-{d} {h}:{i}"+":00");
454
+        } else {
455
+          this.check_time_str = parseTime(this.record.check_time, '{y}-{m}-{d} {h}:{i}' + ':00')
456
+        }
321
       }
457
       }
322
     }
458
     }
323
   }
459
   }
324
-};
325
 </script>
460
 </script>
326
 
461
 
327
 <style style="stylesheet/scss" lang="scss" scoped>
462
 <style style="stylesheet/scss" lang="scss" scoped>
328
-.choose {
463
+  .choose {
329
   .demo-form-inline {
464
   .demo-form-inline {
330
-    border-bottom: 1px #e5e5e5 solid;
331
-    .el-form-item {
332
-      margin-bottom: 0;
333
-      padding: 0.2rem 0.2rem;
334
-      margin-right: 0;
335
-    }
336
-    p {
337
-      color: $title-color;
338
-    }
465
+  border-bottom: 1px #e5e5e5 solid;
466
+  .el-form-item {
467
+  margin-bottom: 0;
468
+  padding: 0.2rem 0.2rem;
469
+  margin-right: 0;
470
+  }
471
+  p {
472
+  color: $title-color;
473
+  }
339
   }
474
   }
340
 
475
 
341
   .button {
476
   .button {
342
-    text-align: center;
343
-    margin-top: 1rem;
344
-    .submitButton {
345
-      width: 3rem;
346
-      height: 0.8rem;
347
-      line-height: 0.8rem;
348
-      background: $main-color;
349
-      color: #fff;
350
-      font-size: 0.3rem;
351
-      text-align: center;
352
-      border-radius: 6px;
353
-    }
477
+  text-align: center;
478
+  margin-top: 1rem;
479
+  .submitButton {
480
+  width: 3rem;
481
+  height: 0.8rem;
482
+  line-height: 0.8rem;
483
+  background: $main-color;
484
+  color: #fff;
485
+  font-size: 0.3rem;
486
+  text-align: center;
487
+  border-radius: 6px;
488
+  }
489
+  }
354
   }
490
   }
355
-}
356
 </style>
491
 </style>
357
 
492
 

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

9
       <div class="yzNav" style="width:100%;">
9
       <div class="yzNav" style="width:100%;">
10
         <span @click="openNewAdvice">新增医嘱</span>
10
         <span @click="openNewAdvice">新增医嘱</span>
11
         <span
11
         <span
12
+          v-if="isShowExce"
12
           @click="execAdvice"
13
           @click="execAdvice"
13
-          :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
14
+          :class="{ forbid: (current_advice&& current_advice.parent_id > 0)||(this.$store.getters.user.user.user_type == 2 && !isPremission) }"
14
         >执行医嘱</span>
15
         >执行医嘱</span>
15
         <span
16
         <span
16
-          @click="checkAdvice"
17
+          v-if="isShowMofifyExce"
18
+          @click="modifyExecAdvice"
17
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
19
           :class="{ forbid: (current_advice&& current_advice.parent_id > 0) }"
20
+        >修改执行医嘱</span>
21
+        <span
22
+          @click="checkAdvice"
23
+          :class="{ forbid: (current_advice&& current_advice.parent_id > 0) || (this.$store.getters.user.user.user_type == 2 && !isPremission) }"
18
         >医嘱核对</span>
24
         >医嘱核对</span>
19
         <span
25
         <span
20
           @click="openNewChild"
26
           @click="openNewChild"
70
                 >
76
                 >
71
                   <div class="txt">
77
                   <div class="txt">
72
                     <span>{{advice.advice_name }}</span>
78
                     <span>{{advice.advice_name }}</span>
73
-                    <!-- <span
74
-                      v-if="advice.drug_spec > 0"
75
-                    >{{ advice.drug_spec }}{{ advice.drug_spec_unit }}</span> -->
76
                     <span>{{ advice.advice_desc }}</span>
79
                     <span>{{ advice.advice_desc }}</span>
77
                     <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
80
                     <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
78
                     <span v-if="advice.single_dose"
81
                     <span v-if="advice.single_dose"
157
       @confirm="handleExecTime"
160
       @confirm="handleExecTime"
158
       v-model="nowExecTime"
161
       v-model="nowExecTime"
159
     ></mt-datetime-picker>
162
     ></mt-datetime-picker>
163
+
164
+    <mt-datetime-picker
165
+      ref="mofify_exec_time"
166
+      type="datetime"
167
+      @confirm="handleModifyExecTime"
168
+      v-model="nowExecTime"
169
+    ></mt-datetime-picker>
160
   </div>
170
   </div>
161
 </template>
171
 </template>
162
 
172
 
169
     DeleteSubDoctorAdvice,
179
     DeleteSubDoctorAdvice,
170
     EditDoctorAdvice,
180
     EditDoctorAdvice,
171
     ExecDoctorAdvice,
181
     ExecDoctorAdvice,
172
-    getAdviceConfig
182
+    getAdviceConfig,
183
+    ModifyExecDoctorAdvice
173
   } from '@/api/advice'
184
   } from '@/api/advice'
174
   import {uParseTime} from '@/utils/tools'
185
   import {uParseTime} from '@/utils/tools'
175
   import CheckBoxSubMenu from './subMenu/checkBoxSubMenu'
186
   import CheckBoxSubMenu from './subMenu/checkBoxSubMenu'
204
       },
215
       },
205
       admin_users_prop: {
216
       admin_users_prop: {
206
         type: Array
217
         type: Array
218
+      },
219
+      special_premission:{
220
+        type: Array
207
       }
221
       }
222
+
208
     },
223
     },
209
     data () {
224
     data () {
210
       return {
225
       return {
211
         isShowDialog: true,
226
         isShowDialog: true,
212
-
227
+        isShowExce: true,
228
+        isShowMofifyExce: false,
213
         title: '临时医嘱',
229
         title: '临时医嘱',
214
         index: 0,
230
         index: 0,
215
         doctor: '',
231
         doctor: '',
234
         currentAdviceIdsStr: '',
250
         currentAdviceIdsStr: '',
235
         currentAdvices: [],
251
         currentAdvices: [],
236
         currentSubAdvices: [],
252
         currentSubAdvices: [],
253
+        isPremission:false,
237
 
254
 
238
       }
255
       }
239
     },
256
     },
264
       for (var index in this.unitsOption) {
281
       for (var index in this.unitsOption) {
265
         this.unitsObj[this.unitsOption[index].id] = this.unitsOption[index]
282
         this.unitsObj[this.unitsOption[index].id] = this.unitsOption[index]
266
       }
283
       }
284
+
285
+      for (let i = 0; i < this.special_premission.length; i++) {
286
+        if (this.$store.getters.user.user.id == this.special_premission[i].admin_user_id) {
287
+          this.isPremission = true
288
+        }
289
+      }
290
+
291
+
267
     },
292
     },
268
     watch: {
293
     watch: {
269
       'advice_groups': function () {
294
       'advice_groups': function () {
270
-        console.log(this.advice_groups)
271
 
295
 
296
+      },
297
+      'currentAdvices': function (currentAdvices) {
298
+        if (currentAdvices.length == 0) {
299
+          this.isShowExce = true
300
+          this.isShowMofifyExce = false
301
+        } else {
302
+          let a = 0
303
+          for (let i = 0; i < currentAdvices.length; i++) {
304
+            if (currentAdvices[i].execution_state == 1) {
305
+              a = a + 1
306
+            }
307
+          }
308
+
309
+
310
+          if (a == currentAdvices.length) {
311
+            this.isShowExce = false
312
+            this.isShowMofifyExce = true
313
+          }else{
314
+            this.isShowExce = true
315
+            this.isShowMofifyExce = false
316
+          }
317
+        }
272
       }
318
       }
273
 
319
 
274
     },
320
     },
275
 
321
 
276
     methods: {
322
     methods: {
323
+      modifyExecAdvice: function () {
324
+        if(!this.isPremission){
325
+          Toast.fail('你没有权限修改医嘱!')
326
+        }else{
327
+          this.nowExecTime = new Date(this.currentAdvices[0].start_time * 1000)
328
+          this.$refs.mofify_exec_time.open()
329
+
330
+        }
331
+
332
+      },
277
       didCreateAdvices: function (advices) {
333
       didCreateAdvices: function (advices) {
278
 
334
 
279
         if (advices.length == 0) {
335
         if (advices.length == 0) {
317
           advice_name: advice.title,
373
           advice_name: advice.title,
318
           advice_desc: advice.advice_desc,
374
           advice_desc: advice.advice_desc,
319
           remark: advice.remark,
375
           remark: advice.remark,
376
+          start_time: advice.start_time,
320
           // drug_spec: String(advice.drug_spec),
377
           // drug_spec: String(advice.drug_spec),
321
           // drug_spec_unit: advice.drug_spec_unit,
378
           // drug_spec_unit: advice.drug_spec_unit,
322
           delivery_way: advice.delivery_way,
379
           delivery_way: advice.delivery_way,
329
           .then(rs => {
386
           .then(rs => {
330
             if (rs.data.state == 1) {
387
             if (rs.data.state == 1) {
331
               var resp_advice = rs.data.data.advice
388
               var resp_advice = rs.data.data.advice
332
-
333
-              var group = this.advice_groups[this.current_group_index]
334
-              for (let index = 0; index < group.advices.length; index++) {
335
-                const advice = group.advices[index]
336
-                if (advice.id == resp_advice.id) {
337
-                  advice.advice_name = resp_advice.advice_name
338
-                  advice.advice_desc = resp_advice.advice_desc
339
-                  advice.remark = resp_advice.remark;
340
-
341
-                  // advice.drug_spec = resp_advice.drug_spec;
342
-                  // (advice.drug_spec_unit = resp_advice.drug_spec_unit),
343
-                  (advice.delivery_way = resp_advice.delivery_way),
344
-                    (advice.execution_frequency =
345
-                      resp_advice.execution_frequency),
346
-                    (advice.single_dose = resp_advice.single_dose),
347
-                    (advice.single_dose_unit = resp_advice.single_dose_unit),
348
-                    (advice.prescribing_number = resp_advice.prescribing_number),
349
-                    (advice.prescribing_number_unit =
350
-                      resp_advice.prescribing_number_unit)
351
-                  break
389
+              if(!rs.data.data.isChange){
390
+                var group = this.advice_groups[this.current_group_index]
391
+                for (let index = 0; index < group.advices.length; index++) {
392
+                  const advice = group.advices[index]
393
+                  if (advice.id == resp_advice.id) {
394
+                    advice.advice_name = resp_advice.advice_name
395
+                    advice.advice_desc = resp_advice.advice_desc
396
+                    advice.remark = resp_advice.remark;
397
+                    advice.start_time = resp_advice.start_time;
398
+                    // advice.drug_spec = resp_advice.drug_spec;
399
+                    // (advice.drug_spec_unit = resp_advice.drug_spec_unit),
400
+                    (advice.delivery_way = resp_advice.delivery_way),
401
+                      (advice.execution_frequency =
402
+                        resp_advice.execution_frequency),
403
+                      (advice.single_dose = resp_advice.single_dose),
404
+                      (advice.single_dose_unit = resp_advice.single_dose_unit),
405
+                      (advice.prescribing_number = resp_advice.prescribing_number),
406
+                      (advice.prescribing_number_unit =
407
+                        resp_advice.prescribing_number_unit)
408
+                    break
409
+                  }
410
+                }
411
+              }else{
412
+                // var group = this.advice_groups[this.current_group_index]
413
+                //先删除旧数据,再插入新数据
414
+                var adviceArr = this.advice_groups[this.current_group_index].advices
415
+                for (let y = resp_advice.length - 1; y >= 0; y--) {
416
+                  for (let i = adviceArr.length - 1; i >= 0; i--) {
417
+                    if (adviceArr[i].id == resp_advice[y].id || adviceArr[i].parent_id == resp_advice[y].id) {
418
+                      adviceArr.splice(i, 1)
419
+                    }
420
+                  }
352
                 }
421
                 }
422
+                var newAdvice = {}
423
+                newAdvice['advices'] = resp_advice
424
+                newAdvice['group_no'] = resp_advice[0].groupno
425
+                this.advice_groups.push(newAdvice)
353
               }
426
               }
427
+
354
               this.currentAdvices = []
428
               this.currentAdvices = []
355
               this.currentSubAdvices = []
429
               this.currentSubAdvices = []
356
               for (let i = 0; i < this.advice_groups.length; i++) {
430
               for (let i = 0; i < this.advice_groups.length; i++) {
501
                 : response.data.data.advice_templates
575
                 : response.data.data.advice_templates
502
           }
576
           }
503
         })
577
         })
578
+      },handleModifyExecTime(time){
579
+        var exceTime = this.handleTime(time)
580
+        var currentAdviceIdArr = []
581
+        var exceParams = null
582
+        for (let i = 0; i < this.currentAdvices.length; i++) {
583
+          if ( this.currentAdvices[i].execution_state == 1) {
584
+            currentAdviceIdArr.push(this.currentAdvices[i].id)
585
+          }
586
+        }
587
+        this.currentAdviceIdsStr = currentAdviceIdArr.join(',')
588
+        if (this.current_select_object == 1) {
589
+          exceParams = {
590
+            groupno: 0,
591
+            advice_id: this.currentAdviceIdsStr,
592
+            execution_time: exceTime
593
+          }
594
+
595
+        } else {
596
+          var group = this.advice_groups[this.current_group_index]
597
+          exceParams = {
598
+            groupno: group.group_no <= 0 ? 0 : group.group_no,
599
+            advice_id: group.group_no <= 0 ? group.advices[0].id : 0,
600
+            execution_time: exceTime
601
+          }
602
+        }
603
+
604
+        ModifyExecDoctorAdvice(exceParams)
605
+          .then(response => {
606
+            if (response.data.state == 0) {
607
+              Toast.fail(response.data.msg)
608
+              return false
609
+            } else {
610
+              Toast.success('执行成功!')
611
+              var advice = response.data.data.advice
612
+              if (this.current_select_object == 1) {
613
+                var ids = this.currentAdviceIdsStr.split(',')
614
+                var adviceArr = this.advice_groups[this.current_group_index].advices
615
+                for (let i = 0; i < adviceArr.length; i++) {
616
+                  for (let a = 0; a < ids.length; a++) {
617
+                    if ((adviceArr[i].execution_state == 1 && adviceArr[i].id == ids[a]) || (adviceArr[i].execution_state == 1 && adviceArr[i].parent_id == ids[a])) {
618
+                      adviceArr[i].execution_time = advice.execution_time
619
+                    }
620
+                  }
621
+                }
622
+              } else {
623
+                for (let index = 0; index < group.advices.length; index++) {
624
+                  const adv = group.advices[index]
625
+                  if (adv.execution_state == 1) {
626
+                    adv.execution_time = advice.execution_time
627
+                  }
628
+                }
629
+              }
630
+            }
631
+          })
632
+          .catch(err => {
633
+            Toast.fail(err)
634
+            return false
635
+          })
636
+
637
+
638
+
504
       },
639
       },
505
       handleExecTime (time) {
640
       handleExecTime (time) {
506
         var exceTime = this.handleTime(time)
641
         var exceTime = this.handleTime(time)
524
         ExecDoctorAdvice(exceParams)
659
         ExecDoctorAdvice(exceParams)
525
           .then(response => {
660
           .then(response => {
526
             if (response.data.state == 0) {
661
             if (response.data.state == 0) {
527
-              Toast.fail('执行失败!')
662
+              Toast.fail(response.data.msg)
528
               return false
663
               return false
529
             } else {
664
             } else {
530
               Toast.success('执行成功!')
665
               Toast.success('执行成功!')
592
               if (rs.data.state == 1) {
727
               if (rs.data.state == 1) {
593
                 Toast.success('删除成功')
728
                 Toast.success('删除成功')
594
                 var adviceArr = this.advice_groups[this.current_group_index].advices
729
                 var adviceArr = this.advice_groups[this.current_group_index].advices
595
-                console.log(adviceArr)
596
-                console.log(this.currentSubAdvices[0].id)
597
                 for (let i = adviceArr.length - 1; i >= 0; i--) {
730
                 for (let i = adviceArr.length - 1; i >= 0; i--) {
598
-                  console.log(adviceArr[i].id)
599
                   if (adviceArr[i].id == this.currentSubAdvices[0].id) {
731
                   if (adviceArr[i].id == this.currentSubAdvices[0].id) {
600
-                    console.log('delete')
601
                     adviceArr.splice(i, 1)
732
                     adviceArr.splice(i, 1)
602
                   }
733
                   }
603
                 }
734
                 }
831
           CheckDoctorAdvice(params)
962
           CheckDoctorAdvice(params)
832
             .then(response => {
963
             .then(response => {
833
               if (response.data.state == 0) {
964
               if (response.data.state == 0) {
834
-                Toast.fail(response.data.msg)
835
                 return false
965
                 return false
836
               } else {
966
               } else {
837
                 Toast.success('核对成功!')
967
                 Toast.success('核对成功!')
900
             }
1030
             }
901
           }
1031
           }
902
           this.currentAdviceIdsStr = currentAdviceIdArr.join(',')
1032
           this.currentAdviceIdsStr = currentAdviceIdArr.join(',')
903
-          console.log(this.currentAdviceIdsStr)
904
           this.nowExecTime = new Date(adviceArr[0].start_time * 1000)
1033
           this.nowExecTime = new Date(adviceArr[0].start_time * 1000)
905
         } else {
1034
         } else {
906
           if (!(this.current_group_index >= 0 && this.current_advice_index < 0)) {
1035
           if (!(this.current_group_index >= 0 && this.current_advice_index < 0)) {
940
 
1069
 
941
         if (
1070
         if (
942
           this.current_advice.stop_state == 1 ||
1071
           this.current_advice.stop_state == 1 ||
943
-          this.current_advice.execution_state == 1||
1072
+          this.current_advice.execution_state == 1 ||
944
           this.current_advice.check_state == 1
1073
           this.current_advice.check_state == 1
945
 
1074
 
946
-      ) {
1075
+        ) {
947
           Toast.fail('所选医嘱已停止或执行或核对')
1076
           Toast.fail('所选医嘱已停止或执行或核对')
948
           return false
1077
           return false
949
         }
1078
         }
1018
             title: advice.advice_name,
1147
             title: advice.advice_name,
1019
             advice_desc: advice.advice_desc,
1148
             advice_desc: advice.advice_desc,
1020
             remark: advice.remark,
1149
             remark: advice.remark,
1150
+            start_time: advice.start_time,
1021
             // drug_spec: advice.drug_spec,
1151
             // drug_spec: advice.drug_spec,
1022
             // drug_spec_unit: advice.drug_spec_unit,
1152
             // drug_spec_unit: advice.drug_spec_unit,
1023
             delivery_way: advice.delivery_way,
1153
             delivery_way: advice.delivery_way,
1060
         this.current_advice = null
1190
         this.current_advice = null
1061
       },
1191
       },
1062
       selectAdviceAction: function (group_index, advice_index, advice) {
1192
       selectAdviceAction: function (group_index, advice_index, advice) {
1193
+        console.log(this.current_group_index)
1194
+        console.log(group_index)
1195
+        console.log(advice.parent_id)
1196
+
1197
+
1063
 
1198
 
1064
         if ((this.current_group_index != -1 && this.current_group_index != group_index) || advice.parent_id > 0) { //选择其他组,将原来的组选择状态清除
1199
         if ((this.current_group_index != -1 && this.current_group_index != group_index) || advice.parent_id > 0) { //选择其他组,将原来的组选择状态清除
1065
           this.currentAdvices = []
1200
           this.currentAdvices = []
1072
           }
1207
           }
1073
         }
1208
         }
1074
 
1209
 
1075
-        for (let i = 0; i < this.advice_groups.length; i++) {  //选择子医嘱,将已经选择的医嘱选择状态清除
1076
-          for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
1077
-            var advices = this.advice_groups[i].advices[y]
1078
-            if (advices.parent_id > 0) {
1079
-              advices.is_selected = 0
1210
+          for (let i = 0; i < this.advice_groups.length; i++) {  //选择子医嘱,将已经选择的医嘱选择状态清除
1211
+            for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
1212
+              var advices = this.advice_groups[i].advices[y]
1213
+              if (advices.parent_id > 0) {
1214
+                advices.is_selected = 0
1215
+              }
1080
             }
1216
             }
1081
           }
1217
           }
1082
-        }
1083
 
1218
 
1084
         for (let i = 0; i < this.advice_groups.length; i++) { //设置选择状态
1219
         for (let i = 0; i < this.advice_groups.length; i++) { //设置选择状态
1085
           for (let y = 0; y < this.advice_groups[i].advices.length; y++) {
1220
           for (let y = 0; y < this.advice_groups[i].advices.length; y++) {

+ 112 - 13
src/pages/main/dialog/PlaneDialog.vue Bestand weergeven

4
         <div class="DialogTit">
4
         <div class="DialogTit">
5
             <span @click="close()" class="iconfont">&#xe6e9;</span>
5
             <span @click="close()" class="iconfont">&#xe6e9;</span>
6
             <h1 class="name">透析下机</h1>
6
             <h1 class="name">透析下机</h1>
7
-            <span class="success"></span>
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
+
8
         </div>
10
         </div>
9
 
11
 
10
         <div class="DialogContent ">
12
         <div class="DialogContent ">
44
 
46
 
45
 <script>
47
 <script>
46
   import {
48
   import {
47
-    finish
49
+    finish,PostModifyEndDialysis
48
   } from "@/api/dialysis";
50
   } from "@/api/dialysis";
49
   import { Toast } from 'vant';
51
   import { Toast } from 'vant';
50
   import TwoMenu from './TwoMenu'
52
   import TwoMenu from './TwoMenu'
61
       end_time_str: "",
63
       end_time_str: "",
62
       end_time:new Date(),
64
       end_time:new Date(),
63
       nurse_id: 0,
65
       nurse_id: 0,
66
+      isPremission:false,
67
+      creator:0,
64
     }
68
     }
65
   },
69
   },
66
   props:{
70
   props:{
76
     admin_map: {
80
     admin_map: {
77
       type: Object,
81
       type: Object,
78
     },
82
     },
83
+    special_premission: {
84
+      type: Array,
85
+    },
79
   },mounted() {
86
   },mounted() {
80
       if(this.record.id == 0){
87
       if(this.record.id == 0){
81
         this.end_time_str = parseTime(this.end_time, "{y}-{m}-{d} {h}:{i}") + ":00";
88
         this.end_time_str = parseTime(this.end_time, "{y}-{m}-{d} {h}:{i}") + ":00";
109
     } else {
116
     } else {
110
       this.nurse_id = this.record.finish_nurse
117
       this.nurse_id = this.record.finish_nurse
111
     }
118
     }
119
+
120
+    console.log("下机:"+this.nurse_id)
121
+
122
+    if (this.record.id > 0) {
123
+      for (let i = 0; i < this.special_premission.length; i++) {
124
+        if (this.$store.getters.user.user.id == this.special_premission[i].admin_user_id) {
125
+          this.isPremission = true
126
+        }
127
+      }
128
+    }
129
+
130
+    if (this.record.id > 0) {
131
+      if (this.record.finish_creator == 0) {
132
+        this.creator = this.record.finish_nurse
133
+      } else {
134
+        this.creator = this.record.finish_creator
135
+      }
136
+    }
137
+
138
+
112
   },
139
   },
113
   methods: {
140
   methods: {
141
+    modify(){
142
+      let ParamsQuery = {}
143
+      ParamsQuery['id'] = this.record.id
144
+      ParamsQuery["nurse"] = this.nurse_id
145
+      ParamsQuery["end_time"] = this.end_time_str
146
+      PostModifyEndDialysis(ParamsQuery).then(response => {
147
+        if (response.data.state == 0) {
148
+          Toast.fail(response.data.msg)
149
+          return false
150
+        } else {
151
+          Toast.success('修改成功')
152
+          this.$emit('did_off', response.data.data.dialysis_order)
153
+          var record = this.record
154
+          for (const key in response.data.data.dialysis_order) {
155
+            this.$set(record, key, response.data.data.dialysis_order[key])
156
+          }
157
+        }
158
+      })
159
+    },
114
     didSelectStartTime: function(time) {
160
     didSelectStartTime: function(time) {
115
       this.end_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
161
       this.end_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
116
     },
162
     },
117
     selectStartTimeAction: function() {
163
     selectStartTimeAction: function() {
118
       if (this.record.id != 0) {
164
       if (this.record.id != 0) {
119
         if(this.record.end_time > 0){
165
         if(this.record.end_time > 0){
120
-          return
166
+          var creator = 0
167
+          if (this.record.finish_creator == 0) {
168
+            creator = this.record.finish_nurse
169
+          } else {
170
+            creator = this.record.finish_creator
171
+          }
172
+          if (this.$store.getters.user.user.id == creator || this.isPremission) {
173
+            this.$refs.start_time_picker.open()
174
+          } else {
175
+            return
176
+          }
121
         }else{
177
         }else{
122
           this.$refs.start_time_picker.open();
178
           this.$refs.start_time_picker.open();
123
         }
179
         }
154
       this.$emit('close')
210
       this.$emit('close')
155
     },
211
     },
156
     select_nurse: function() {
212
     select_nurse: function() {
157
-      if (this.record != null && this.record.id != '' && this.record.stage == 1) {
158
-        this.selecting = true
159
-        var t = this
160
-        this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, "选择下机护士", "name", "id", function(select_id) {
161
-          console.log("nurse id: ", select_id)
162
-          t.nurse_id = select_id
163
-        }, function() {
164
-          t.selecting = false
165
-        })
213
+      if (this.record != null && this.record.id != '') {
214
+        if(this.record.stage == 1){
215
+          this.selecting = true
216
+          var t = this
217
+          this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, "选择下机护士", "name", "id", function(select_id) {
218
+            console.log("nurse id: ", select_id)
219
+            t.nurse_id = select_id
220
+          }, function() {
221
+            t.selecting = false
222
+          })
223
+        }else{
224
+          var creator = 0
225
+          if (this.record.finish_creator == 0) {
226
+            creator = this.record.finish_nurse
227
+          } else {
228
+            creator = this.record.finish_creator
229
+          }
230
+          if (this.$store.getters.user.user.id == creator || this.isPremission) {
231
+            this.selecting = true
232
+            var t = this
233
+            this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, "选择下机护士", "name", "id", function(select_id) {
234
+              console.log("nurse id: ", select_id)
235
+              t.nurse_id = select_id
236
+            }, function() {
237
+              t.selecting = false
238
+            })
239
+          } else {
240
+            return
241
+          }
242
+        }
243
+
166
       }
244
       }
167
     },
245
     },
168
     open:function(){
246
     open:function(){
169
       this.selecting = false;
247
       this.selecting = false;
170
       this.$refs.selector.hide();
248
       this.$refs.selector.hide();
171
     }
249
     }
172
-  }
250
+  }, watch: {
251
+      'record.stage': function (val) {
252
+        if (val == 2) {
253
+          for (let i = 0; i < this.special_premission.length; i++) {
254
+            if (this.$store.getters.user.user.id == this.special_premission[i].admin_user_id) {
255
+              this.isPremission = true
256
+            }
257
+          }
258
+          if (this.record.finish_nurse == 0) {
259
+            this.creator = this.record.finish_nurse
260
+          } else {
261
+            this.creator = this.record.finish_creator
262
+          }
263
+        }
264
+
265
+        console.log(this.creator)
266
+        console.log(this.$store.getters.user.user.id)
267
+
268
+
269
+      }
270
+
271
+    }
173
 };
272
 };
174
 </script>
273
 </script>
175
 
274
 

+ 40 - 10
src/pages/main/dialog/modify_order/modify_order_form.vue Bestand weergeven

11
       <div class="DialogContent choose advice-top">
11
       <div class="DialogContent choose advice-top">
12
         <div class="content clearfix">
12
         <div class="content clearfix">
13
           <div>
13
           <div>
14
+            <div class="cell" v-show="order.parent_id == 0">
15
+              <label>开始时间</label>
16
+              <el-input :value="start_time_str" readonly @focus="selectStartTimeAction"></el-input>
17
+            </div>
18
+
14
             <div class="cell">
19
             <div class="cell">
15
               <label>医嘱名称</label>
20
               <label>医嘱名称</label>
16
               <el-input v-model="order.title"></el-input>
21
               <el-input v-model="order.title"></el-input>
63
               >
68
               >
64
             </div>
69
             </div>
65
 
70
 
71
+            <div class="cell" v-show="order.parent_id == 0">
72
+              <label>医嘱嘱托</label>
73
+              <input
74
+                class="inputBox"
75
+                style="width:100%"
76
+                v-model="order.remark"
77
+              >
78
+            </div>
79
+
66
             <div class="cell" v-show="order.parent_id == 0">
80
             <div class="cell" v-show="order.parent_id == 0">
67
               <label>给药途径</label>
81
               <label>给药途径</label>
68
               <el-input
82
               <el-input
84
               ></el-input>
98
               ></el-input>
85
             </div>
99
             </div>
86
 
100
 
87
-            <div class="cell" v-show="order.parent_id == 0">
88
-              <label>医嘱嘱托</label>
89
-              <input
90
-                class="inputBox"
91
-                style="width:100%"
92
-                v-model="order.remark"
93
-              >
94
-            </div>
101
+
95
           </div>
102
           </div>
96
         </div>
103
         </div>
97
       </div>
104
       </div>
146
       option_key="id"
153
       option_key="id"
147
       option_label_key="name"
154
       option_label_key="name"
148
     ></single-option-dialog>
155
     ></single-option-dialog>
156
+
157
+    <mt-datetime-picker
158
+      ref="start_time_picker"
159
+      type="datetime"
160
+      @confirm="didSelectStartTime"
161
+      v-model="start_time"
162
+    ></mt-datetime-picker>
149
   </div>
163
   </div>
150
 </template>
164
 </template>
151
 
165
 
152
 <script>
166
 <script>
153
 import SingleOptionDialog from "../new_order/single_option_dialog";
167
 import SingleOptionDialog from "../new_order/single_option_dialog";
154
 import { Toast } from "vant";
168
 import { Toast } from "vant";
169
+import { parseTime } from "@/utils";
155
 
170
 
156
 export default {
171
 export default {
157
   name: "OrderForm",
172
   name: "OrderForm",
194
     return {
209
     return {
195
       visibility: false,
210
       visibility: false,
196
       sub_dialog_key: 0,
211
       sub_dialog_key: 0,
197
-
212
+      start_time_str:'',
213
+      start_time: new Date(),
198
       mode: 1,
214
       mode: 1,
199
       order: {
215
       order: {
200
         id: 0,
216
         id: 0,
223
     }
239
     }
224
   },
240
   },
225
   methods: {
241
   methods: {
242
+    didSelectStartTime: function(time) {
243
+      this.start_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
244
+    },
245
+    selectStartTimeAction:function(){
246
+      this.$refs.start_time_picker.open();
247
+
248
+    },
226
     showWithModify: function(order) {
249
     showWithModify: function(order) {
250
+      console.log(order)
251
+
227
       this.mode = 1;
252
       this.mode = 1;
228
       this.visibility = true;
253
       this.visibility = true;
229
 
254
 
233
       this.order.advice_desc = order.advice_desc;
258
       this.order.advice_desc = order.advice_desc;
234
       this.order.remark = order.remark;
259
       this.order.remark = order.remark;
235
 
260
 
261
+
262
+      this.start_time_str = parseTime(order.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
263
+
236
       // this.order.drug_spec = order.drug_spec;
264
       // this.order.drug_spec = order.drug_spec;
237
       // this.order.drug_spec_unit = order.drug_spec_unit;
265
       // this.order.drug_spec_unit = order.drug_spec_unit;
238
       this.order.delivery_way =
266
       this.order.delivery_way =
276
           single_dose: this.order.single_dose,
304
           single_dose: this.order.single_dose,
277
           single_dose_unit: this.order.single_dose_unit,
305
           single_dose_unit: this.order.single_dose_unit,
278
           prescribing_number: this.order.prescribing_number,
306
           prescribing_number: this.order.prescribing_number,
279
-          prescribing_number_unit: this.order.prescribing_number_unit
307
+          prescribing_number_unit: this.order.prescribing_number_unit,
308
+          start_time:this.start_time_str
309
+
280
         });
310
         });
281
       }
311
       }
282
     },
312
     },

+ 79 - 37
src/pages/main/template/DialysisPrintOrderTwo.vue Bestand weergeven

12
         </div>
12
         </div>
13
         <div class="inline_block" style="margin-left: 25px;">
13
         <div class="inline_block" style="margin-left: 25px;">
14
           住院号:
14
           住院号:
15
-          <div class="under_line" style="width: 100px;text-align: left">
16
-            {{patientInfo.admission_number?patientInfo.admission_number:'/'}}
15
+          <div class="under_line" style="width: 100px;text-align: left" v-if="patientInfo.admission_number">
16
+            {{patientInfo.admission_number}}
17
+          </div>
18
+          <div class="under_line" style="width: 100px;text-align: left" v-else>
19
+            {{'/'}}
17
           </div>
20
           </div>
18
         </div>
21
         </div>
19
         <div class="inline_block" style="margin-left:25px;">
22
         <div class="inline_block" style="margin-left:25px;">
499
                     <span v-if="setAdminUserES(check==null?0:check.modifier) == ''">{{getAdminUser(check==null?0:check.modifier)}}</span>
502
                     <span v-if="setAdminUserES(check==null?0:check.modifier) == ''">{{getAdminUser(check==null?0:check.modifier)}}</span>
500
                     <img class="es-img" :src="setAdminUserES(check==null?0:check.modifier)" alt="" srcset="" v-else>
503
                     <img class="es-img" :src="setAdminUserES(check==null?0:check.modifier)" alt="" srcset="" v-else>
501
                   </div>
504
                   </div>
505
+                  <div class="under_line" style="width: 80px;text-align: left" v-if="dialysisOrder != null && dialysisOrder.start_nurse != check.creater&&dialysisOrder.start_nurse != check.modifier">
506
+                    <span v-if="setAdminUserES(check==null?0:check.creater) == ''">{{getAdminUser(check==null?0:check.creater)}}</span>
507
+                    <img class="es-img" :src="setAdminUserES(check==null?0:check.creater)" alt="" srcset="" v-else>
508
+                  </div>
502
                 </div>
509
                 </div>
503
                 <div class="inline_block">
510
                 <div class="inline_block">
504
                   &emsp;核对时间:
511
                   &emsp;核对时间:
583
           </div>
590
           </div>
584
           <div class="inline_block" style="margin-left:25px;">
591
           <div class="inline_block" style="margin-left:25px;">
585
             住院号:
592
             住院号:
586
-            <div class="under_line" style="width: 120px;text-align: left">
587
-              {{patientInfo.admission_number?patientInfo.admission_number:'/'}}
593
+            <div class="under_line" style="width: 100px;text-align: left" v-if="patientInfo.admission_number">
594
+              {{patientInfo.admission_number}}
595
+            </div>
596
+            <div class="under_line" style="width: 100px;text-align: left" v-else>
597
+              {{'/'}}
588
             </div>
598
             </div>
589
           </div>
599
           </div>
590
           <div class="inline_block" style="margin-left:25px;">
600
           <div class="inline_block" style="margin-left:25px;">
706
               <div class="row" style="padding: 2px 0;line-height:24px;">
716
               <div class="row" style="padding: 2px 0;line-height:24px;">
707
                 <div class="inline_block">
717
                 <div class="inline_block">
708
                   透析液(mmol/L): &emsp;Ca<sup>2+</sup>:
718
                   透析液(mmol/L): &emsp;Ca<sup>2+</sup>:
709
-                  <div class="under_line" style="width: 70px;text-align: left">
710
-                    <span v-if="prescription.calcium">{{getFloat(prescription.calcium)?getFloat(prescription.calcium):'/'}}</span>
711
-                    <span v-else>{{'/'}}</span>
712
-
719
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.calcium">
720
+                    <span>{{getFloat(prescription.calcium)?getFloat(prescription.calcium):'/'}}</span>
721
+                  </div>
722
+                  <div class="under_line" style="width: 70px;" v-else>
723
+                    <span>{{'/'}}</span>
713
                   </div>
724
                   </div>
714
                   mmol/L &emsp;Na<sup>+</sup>:
725
                   mmol/L &emsp;Na<sup>+</sup>:
715
-                  <div class="under_line" style="width: 70px;text-align: left">
716
-                    <span v-if="prescription.sodium">{{getFloat(prescription.sodium)?getFloat(prescription.sodium):'/'}}</span>
717
-                    <span v-else>{{'/'}}</span>
718
 
726
 
727
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.sodium">
728
+                    <span>{{getFloat(prescription.sodium)?getFloat(prescription.sodium):'/'}}</span>
729
+                  </div>
730
+                  <div class="under_line" style="width: 70px;" v-else>
731
+                    <span>{{'/'}}</span>
719
                   </div>
732
                   </div>
720
                   mmol/L &emsp;K<sup>+</sup>:
733
                   mmol/L &emsp;K<sup>+</sup>:
721
-                  <div class="under_line" style="width: 70px;text-align: left">
722
-                    <span v-if="prescription.kalium">{{getFloat(prescription.kalium)?getFloat(prescription.kalium):'/'}}</span>
723
-                    <span v-else>{{'/'}}</span>
724
-
725
-
734
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.kalium">
735
+                    <span>{{getFloat(prescription.kalium)?getFloat(prescription.kalium):'/'}}</span>
736
+                  </div>
737
+                  <div class="under_line" style="width: 70px;" v-else>
738
+                    <span>{{'/'}}</span>
726
                   </div>
739
                   </div>
727
                   mmol/L
740
                   mmol/L
728
                 </div>
741
                 </div>
729
                 <div class="inline_block" v-if="prescription.displace_liqui_part == 0">
742
                 <div class="inline_block" v-if="prescription.displace_liqui_part == 0">
730
                   &emsp;置换液后/前稀释 总量:
743
                   &emsp;置换液后/前稀释 总量:
731
-                  <div class="under_line" style="width: 70px;text-align: left">
732
-                    {{prescription.displace_liqui_value?prescription.displace_liqui_value:'/'}}
744
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.displace_liqui_value">
745
+                    {{prescription.displace_liqui_value}}
746
+                  </div>
747
+                  <div class="under_line" style="width: 70px;" v-else>
748
+                    {{'/'}}
733
                   </div>
749
                   </div>
734
                   L
750
                   L
735
                 </div>
751
                 </div>
736
                 <div class="inline_block" v-if="prescription.displace_liqui_part == 1">
752
                 <div class="inline_block" v-if="prescription.displace_liqui_part == 1">
737
                   &emsp;置换液前稀释 总量:
753
                   &emsp;置换液前稀释 总量:
738
-                  <div class="under_line" style="width: 70px;text-align: left">
739
-                    {{prescription.displace_liqui_value?prescription.displace_liqui_value:'/'}}
754
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.displace_liqui_value">
755
+                    {{prescription.displace_liqui_value}}
756
+                  </div>
757
+                  <div class="under_line" style="width: 70px;" v-else>
758
+                    {{'/'}}
740
                   </div>
759
                   </div>
741
                   L
760
                   L
742
                 </div>
761
                 </div>
743
                 <div class="inline_block" v-if="prescription.displace_liqui_part == 2">
762
                 <div class="inline_block" v-if="prescription.displace_liqui_part == 2">
744
                   &emsp;置换液后稀释 总量:
763
                   &emsp;置换液后稀释 总量:
745
-                  <div class="under_line" style="width: 70px;text-align: left">
746
-                    {{prescription.displace_liqui_value?prescription.displace_liqui_value:'/'}}
764
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.displace_liqui_value">
765
+                    {{prescription.displace_liqui_value}}
766
+                  </div>
767
+                  <div class="under_line" style="width: 70px;" v-else>
768
+                    {{'/'}}
747
                   </div>
769
                   </div>
748
                   L
770
                   L
749
                 </div>
771
                 </div>
757
                 </div>
779
                 </div>
758
                 <div class="inline_block">
780
                 <div class="inline_block">
759
                   &emsp;血流量:
781
                   &emsp;血流量:
760
-                  <div class="under_line" style="width: 70px;text-align: left">
761
-                    {{prescription.blood_flow_volume?prescription.blood_flow_volume:'/'}}
782
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.blood_flow_volume">
783
+                    {{prescription.blood_flow_volume}}
784
+                  </div>
785
+                  <div class="under_line" style="width: 70px;text-align: left" v-else>
786
+                    {{'/'}}
762
                   </div>
787
                   </div>
763
                   ml/min
788
                   ml/min
764
                 </div>
789
                 </div>
765
                 <div class="inline_block">
790
                 <div class="inline_block">
766
                   &emsp;透析液流量:
791
                   &emsp;透析液流量:
767
-                  <div class="under_line" style="width: 70px;text-align: left">
768
-                    {{prescription.dialysate_flow?prescription.dialysate_flow:'/'}}
792
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="prescription.dialysate_flow">
793
+                    {{prescription.dialysate_flow}}
794
+                  </div>
795
+                  <div class="under_line" style="width: 70px;" v-else>
796
+                    {{'/'}}
769
                   </div>
797
                   </div>
770
                   ml/min
798
                   ml/min
771
                 </div>
799
                 </div>
773
               <div class="row" style="padding: 2px 0;line-height:24px;">
801
               <div class="row" style="padding: 2px 0;line-height:24px;">
774
                 <div class="inline_block">
802
                 <div class="inline_block">
775
                   透前体重:
803
                   透前体重:
776
-                  <div class="under_line" style="width: 70px;text-align: left">
777
-                    {{predialysis.weight_before?predialysis.weight_before:'/'}}
804
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="predialysis.weight_before">
805
+                    {{predialysis.weight_before}}
806
+                  </div>
807
+                  <div class="under_line" style="width: 70px;" v-else>
808
+                    {{'/'}}
778
                   </div>
809
                   </div>
779
                   kg
810
                   kg
780
                 </div>
811
                 </div>
781
                 <div class="inline_block">
812
                 <div class="inline_block">
782
                   &emsp;设定超滤量:
813
                   &emsp;设定超滤量:
783
-                  <div class="under_line" style="width: 70px;text-align: left">
784
-                    {{getFloat(prescription.target_ultrafiltration)?getFloat(prescription.target_ultrafiltration):'/'}}
785
-
814
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="getFloat(prescription.target_ultrafiltration)">
815
+                    {{getFloat(prescription.target_ultrafiltration)}}
816
+                  </div>
817
+                  <div class="under_line" style="width: 70px;" v-else>
818
+                    {{'/'}}
786
                   </div>
819
                   </div>
787
                   L
820
                   L
788
                 </div>
821
                 </div>
789
                 <div class="inline_block">
822
                 <div class="inline_block">
790
                   &emsp;实际超滤量:
823
                   &emsp;实际超滤量:
791
-                  <div class="under_line" style="width: 70px;text-align: left">
792
-                    {{getFloat(prescription.ultrafiltration)?getFloat(prescription.ultrafiltration):'/'}}
824
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="getFloat(prescription.ultrafiltration)">
825
+                    {{getFloat(prescription.ultrafiltration)}}
826
+                  </div>
827
+                  <div class="under_line" style="width: 70px;" v-else>
828
+                    {{'/'}}
793
                   </div>
829
                   </div>
794
                   L
830
                   L
795
 
831
 
796
                 </div>
832
                 </div>
797
                 <div class="inline_block">
833
                 <div class="inline_block">
798
                   透后体重:
834
                   透后体重:
799
-                  <div class="under_line" style="width: 70px;text-align: left">
800
-                    {{afterdialysis.weight_after?afterdialysis.weight_after:'/'}}
835
+                  <div class="under_line" style="width: 70px;text-align: left" v-if="afterdialysis.weight_after">
836
+                    {{afterdialysis.weight_after}}
837
+                  </div>
838
+                  <div class="under_line" style="width: 70px;" v-else>
839
+                    {{'/'}}
801
                   </div>
840
                   </div>
802
                   kg
841
                   kg
803
                 </div>
842
                 </div>
878
             </div>
917
             </div>
879
             <div class="inline_block" style="margin-left:25px;">
918
             <div class="inline_block" style="margin-left:25px;">
880
               住院号:
919
               住院号:
881
-              <div class="under_line" style="width: 120px;text-align: left">
882
-                {{patientInfo.admission_number?patientInfo.admission_number:'/'}}
920
+              <div class="under_line" style="width: 100px;text-align: left" v-if="patientInfo.admission_number">
921
+                {{patientInfo.admission_number}}
922
+              </div>
923
+              <div class="under_line" style="width: 100px;text-align: left" v-else>
924
+                {{'/'}}
883
               </div>
925
               </div>
884
             </div>
926
             </div>
885
             <div class="inline_block" style="margin-left:25px;">
927
             <div class="inline_block" style="margin-left:25px;">

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

123
     </van-popup>
123
     </van-popup>
124
 
124
 
125
     <van-popup title="临时医嘱" v-model="menuList[4].showPopup" :overlay="true" :close-on-click-overlay="false">
125
     <van-popup title="临时医嘱" v-model="menuList[4].showPopup" :overlay="true" :close-on-click-overlay="false">
126
-      <orders-dialog :patient_prop="patient" :advice_groups="advice_groups" :advice_list_prop="doctor_advices" :admin_users_prop="admin_users" @orderDialog="closeStatOrder" ref="orders_dialog" > </orders-dialog>
126
+      <orders-dialog :patient_prop="patient" :advice_groups="advice_groups" :advice_list_prop="doctor_advices" :admin_users_prop="admin_users" :special_premission="special_premission" @orderDialog="closeStatOrder" ref="orders_dialog" > </orders-dialog>
127
     </van-popup>
127
     </van-popup>
128
 
128
 
129
     <van-popup title="双人查对" v-model="menuList[5].showPopup" :overlay="true" :close-on-click-overlay="false">
129
     <van-popup title="双人查对" v-model="menuList[5].showPopup" :overlay="true" :close-on-click-overlay="false">
133
 
133
 
134
     <van-popup title="透析上机" v-model="menuList[0].showPopup" :overlay="true" :close-on-click-overlay="false">
134
     <van-popup title="透析上机" v-model="menuList[0].showPopup" :overlay="true" :close-on-click-overlay="false">
135
       <computer-dialog :schedule="schedual" :patient_prop="patient" :record="dialysis_order" :admins="admin_users"
135
       <computer-dialog :schedule="schedual" :patient_prop="patient" :record="dialysis_order" :admins="admin_users"
136
-                       :device_numbers="device_numbers" :admin_map="admin_user_map"
136
+                       :device_numbers="device_numbers" :admin_map="admin_user_map" :special_premission="special_premission"
137
                        :device_number_map="device_number_map" @did_start="closeDialysisComputer"
137
                        :device_number_map="device_number_map" @did_start="closeDialysisComputer"
138
                        @close="closeDialysisComputer" ref="computer_dialog"></computer-dialog>
138
                        @close="closeDialysisComputer" ref="computer_dialog"></computer-dialog>
139
     </van-popup>
139
     </van-popup>
145
     </van-popup>
145
     </van-popup>
146
 
146
 
147
     <van-popup title="透析下机" v-model="menuList[7].showPopup" :overlay="true" :close-on-click-overlay="false">
147
     <van-popup title="透析下机" v-model="menuList[7].showPopup" :overlay="true" :close-on-click-overlay="false">
148
-      <plane-dialog :patient_prop="patient" :record="dialysis_order" :admins="admin_users" :admin_map="admin_user_map"
148
+      <plane-dialog :patient_prop="patient" :record="dialysis_order" :admins="admin_users" :admin_map="admin_user_map" :special_premission="special_premission"
149
                     @did_off="closeDialysisOff" @close="closeDialysisOff" ref="plane_dialog"></plane-dialog>
149
                     @did_off="closeDialysisOff" @close="closeDialysisOff" ref="plane_dialog"></plane-dialog>
150
     </van-popup>
150
     </van-popup>
151
 
151
 
271
       last_assessment_after_dislysis: {}, // 上次透后评估
271
       last_assessment_after_dislysis: {}, // 上次透后评估
272
       treatment_summary: {}, // 治疗小结
272
       treatment_summary: {}, // 治疗小结
273
       monitor_records: [], // 透析监测
273
       monitor_records: [], // 透析监测
274
+      special_premission: [],
274
       last_monitor_record: {
275
       last_monitor_record: {
275
         id: 0,
276
         id: 0,
276
         operate_time: new Date().getTime(),
277
         operate_time: new Date().getTime(),
750
           var dialysis_order = resp.data.dialysis_order; // 透析记录
751
           var dialysis_order = resp.data.dialysis_order; // 透析记录
751
           var operators = resp.data.operators; // 操作人
752
           var operators = resp.data.operators; // 操作人
752
 
753
 
754
+
755
+          var special_premission = resp.data.special_premission // 特殊权限
756
+
757
+
753
           var last_predialysis_evaluation =
758
           var last_predialysis_evaluation =
754
             resp.data.last_predialysis_evaluation; // 上一次透前评估
759
             resp.data.last_predialysis_evaluation; // 上一次透前评估
755
           var last_assessment_after_dislysis =
760
           var last_assessment_after_dislysis =
772
               : last_predialysis_evaluation;
777
               : last_predialysis_evaluation;
773
 
778
 
774
           this.doctor_advices = doctor_advices == null ? [] : doctor_advices;
779
           this.doctor_advices = doctor_advices == null ? [] : doctor_advices;
780
+          this.special_premission = special_premission
781
+
775
           if (this.doctor_advices.length > 0) {
782
           if (this.doctor_advices.length > 0) {
776
             var group = this.newAdviceGroupObject();
783
             var group = this.newAdviceGroupObject();
777
             var initGroupBlock = function(group, advice) {
784
             var initGroupBlock = function(group, advice) {

+ 8 - 10
src/pages/waitingRoom/components/details.vue Bestand weergeven

21
       <div v-show="index==1" title="透析"></div> -->
21
       <div v-show="index==1" title="透析"></div> -->
22
 
22
 
23
       <div v-show="index==1" title="今日">
23
       <div v-show="index==1" title="今日">
24
-        <details-menu 
25
-        ref="detail_menu" 
26
-        class="clearfix" 
24
+        <details-menu
25
+        ref="detail_menu"
26
+        class="clearfix"
27
         :patient="patient"
27
         :patient="patient"
28
         :schedual="schedual"
28
         :schedual="schedual"
29
         :prescription="prescription"
29
         :prescription="prescription"
39
         :admin_users="admin_users"
39
         :admin_users="admin_users"
40
         :devices="devices"
40
         :devices="devices"
41
         v-on:did_add_monitor="didAddMonitor" @create_medical_order="createMedicalOrder" @delete_medical_order="delMedicalOrder" @execution_medical_order="executionMedicalOrder" @edit_pre_dialysis="editPreDialysis"></details-menu>
41
         v-on:did_add_monitor="didAddMonitor" @create_medical_order="createMedicalOrder" @delete_medical_order="delMedicalOrder" @execution_medical_order="executionMedicalOrder" @edit_pre_dialysis="editPreDialysis"></details-menu>
42
-        
42
+
43
         <details-info ref="patient_info" class="clearfix"></details-info>
43
         <details-info ref="patient_info" class="clearfix"></details-info>
44
         <dialysis-prescription ref="prescription" title="透析处方 " :prescription="prescription" :solution="solution"></dialysis-prescription>
44
         <dialysis-prescription ref="prescription" title="透析处方 " :prescription="prescription" :solution="solution"></dialysis-prescription>
45
         <!-- <past-data title="往期数据"></past-data> -->
45
         <!-- <past-data title="往期数据"></past-data> -->
106
       dialysis_order : {}, // 透析记录
106
       dialysis_order : {}, // 透析记录
107
       admin_users: [], //系统用户列表
107
       admin_users: [], //系统用户列表
108
       devices: [],//设备
108
       devices: [],//设备
109
+      special_premission:[],
109
     };
110
     };
110
   },
111
   },
111
   components: {
112
   components: {
161
           var treatment_summary = resp.data.treatment_summary // 治疗小结
162
           var treatment_summary = resp.data.treatment_summary // 治疗小结
162
           var monitor_records = resp.data.monitor_records // 透析监测
163
           var monitor_records = resp.data.monitor_records // 透析监测
163
           var dialysis_order = resp.data.dialysis_order // 透析记录
164
           var dialysis_order = resp.data.dialysis_order // 透析记录
165
+          var special_premission = resp.data.special_premission // 特殊权限
166
+
164
 
167
 
165
           this.patient = patient
168
           this.patient = patient
166
           this.schedual = schedual == null ? {} : schedual
169
           this.schedual = schedual == null ? {} : schedual
174
           this.treatment_summary = treatment_summary == null ? {id: ""} : treatment_summary
177
           this.treatment_summary = treatment_summary == null ? {id: ""} : treatment_summary
175
           this.monitor_records = monitor_records == null ? {} : monitor_records
178
           this.monitor_records = monitor_records == null ? {} : monitor_records
176
           this.dialysis_order = dialysis_order == null ? {id: ""} : dialysis_order
179
           this.dialysis_order = dialysis_order == null ? {id: ""} : dialysis_order
180
+          this.special_premission = special_premission
177
 
181
 
178
           this.$refs.patient_info.setPatientInfo(this.patient, this.schedual.device_number.number)
182
           this.$refs.patient_info.setPatientInfo(this.patient, this.schedual.device_number.number)
179
-          
180
           this.$refs.patient_detail.setPatientInfo(this.patient, this.schedual.device_number.number)
183
           this.$refs.patient_detail.setPatientInfo(this.patient, this.schedual.device_number.number)
181
           // this.$refs.prescription.setPrescription(prescription, solution)
184
           // this.$refs.prescription.setPrescription(prescription, solution)
182
           // this.$refs.accepts_assessment.setRecord(this.receiver_treatment_access)
185
           // this.$refs.accepts_assessment.setRecord(this.receiver_treatment_access)
188
           // this.$refs.dialysis_off.setOrder(this.dialysis_order)
191
           // this.$refs.dialysis_off.setOrder(this.dialysis_order)
189
           // this.$refs.assessment_after.setRecord(this.assessment_after_dislysis)
192
           // this.$refs.assessment_after.setRecord(this.assessment_after_dislysis)
190
           // this.$refs.treatment_of.setRecord(this.treatment_summary)
193
           // this.$refs.treatment_of.setRecord(this.treatment_summary)
191
-
192
           // this.$refs.detail_menu.setData(resp.data)
194
           // this.$refs.detail_menu.setData(resp.data)
193
-
194
           this.title = patient.name
195
           this.title = patient.name
195
-
196
         } else {
196
         } else {
197
           this.$toast({
197
           this.$toast({
198
             message: resp.msg
198
             message: resp.msg
211
       })
211
       })
212
     },
212
     },
213
     didAddMonitor: function(monitor) {
213
     didAddMonitor: function(monitor) {
214
-      console.log("1111111")
215
-      console.log(monitor)
216
       this.$refs.monitoring.addRecords([monitor])
214
       this.$refs.monitoring.addRecords([monitor])
217
     },
215
     },
218
     createMedicalOrder(row) {
216
     createMedicalOrder(row) {

+ 1 - 0
src/pages/waitingRoom/components/dialog/medicalOrder.vue Bestand weergeven

295
 
295
 
296
     handleExecTime(time) {
296
     handleExecTime(time) {
297
       var exceTime = this.handleTime(time);
297
       var exceTime = this.handleTime(time);
298
+      console.log(exceTime)
298
       var exceParams = {
299
       var exceParams = {
299
         id: this.currentRow.id,
300
         id: this.currentRow.id,
300
         patient: this.patient.id,
301
         patient: this.patient.id,