|
@@ -5,38 +5,28 @@
|
5
|
5
|
<p>{{title}}</p>
|
6
|
6
|
<span class="line"></span>
|
7
|
7
|
</h2>
|
|
8
|
+ <!-- <table class="table">
|
|
9
|
+ <tr>
|
|
10
|
+ <th width="12%">开嘱医生</th>
|
|
11
|
+ <th width="18%">开始时间</th>
|
|
12
|
+ <th width="31%">医嘱内容</th>
|
|
13
|
+ <th width="18.6%">执行时间</th>
|
|
14
|
+ <th width="10.5%">执行护士</th>
|
|
15
|
+ <th v-if="template_id != 6" width="9.4%">核对护士</th>
|
|
16
|
+ </tr>
|
|
17
|
+ <template v-for="(group) in advice_groups">
|
|
18
|
+ <tr v-for="(advice, i) in group.advices" :key="advice.id">
|
|
19
|
+ <td v-if="i == 0" :rowspan="group.advices.length">{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
|
8
|
20
|
|
9
|
|
- <!-- <div class="newDiv">
|
10
|
|
- <table class="table">
|
11
|
|
- <tr>
|
12
|
|
- <th width="12%">开嘱医生</th>
|
13
|
|
- <th width="18%">开始时间</th>
|
14
|
|
- <th width="31%">医嘱内容</th>
|
15
|
|
- <th width="18.6%">执行时间</th>
|
16
|
|
- <th width="10.5%">执行护士</th>
|
17
|
|
- <th v-if="template_id != 6" width="9.4%">核对护士</th>
|
18
|
|
- </tr>
|
19
|
|
-
|
20
|
|
- <template v-for="(group) in advice_groups">
|
21
|
|
- <tr v-for="(advice, i) in group.advices" :key="advice.id">
|
22
|
|
- <td
|
23
|
|
- v-if="i == 0"
|
24
|
|
- :rowspan="group.advices.length"
|
25
|
|
- >{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
|
26
|
|
-
|
27
|
|
- <td
|
28
|
|
- v-if="i == 0"
|
29
|
|
- :rowspan="group.advices.length"
|
30
|
|
- >{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
|
|
21
|
+ <td v-if="i == 0" :rowspan="group.advices.length">{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
|
31
|
22
|
|
32
|
23
|
<td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
|
33
|
24
|
<span>{{advice.advice_name }}</span>
|
34
|
|
- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
|
|
25
|
+
|
35
|
26
|
<span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
|
36
|
|
- <span
|
37
|
|
- v-if="advice.prescribing_number"
|
38
|
|
- >{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
|
39
|
|
- <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
|
|
27
|
+ <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
|
|
28
|
+ <span v-if="advice.single_dose && template_id == 6" >{{advice.single_dose}}{{advice.single_dose_unit}}</span>
|
|
29
|
+ <span v-if="advice.single_dose && template_id != 6" >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
|
40
|
30
|
<span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
|
41
|
31
|
<span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
|
42
|
32
|
<span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
|
|
@@ -46,21 +36,15 @@
|
46
|
36
|
|
47
|
37
|
<td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
|
48
|
38
|
|
49
|
|
- <td
|
50
|
|
- v-if="template_id != 6"
|
51
|
|
- >{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
|
52
|
|
- </tr>
|
|
39
|
+ <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
|
|
40
|
+ </tr>
|
|
41
|
+ </template>
|
|
42
|
+ </table> -->
|
|
43
|
+ <el-table :data="tableDate" border style="width: 100%">
|
|
44
|
+ <el-table-column fixed label="开嘱医生" width="100">
|
|
45
|
+ <template slot-scope="scope">
|
|
46
|
+ {{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}
|
53
|
47
|
</template>
|
54
|
|
- </table>
|
55
|
|
- </div>
|
56
|
|
- <div class="NoData" v-show="advice_groups.length == 0">
|
57
|
|
- <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
|
58
|
|
- </div>-->
|
59
|
|
- <el-table :data="tableDate" border style="width: 100%">
|
60
|
|
- <el-table-column fixed label="开嘱医生" width="100">
|
61
|
|
- <template
|
62
|
|
- slot-scope="scope"
|
63
|
|
- >{{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}</template>
|
64
|
48
|
</el-table-column>
|
65
|
49
|
<el-table-column label="开始时间" width="100" type="index">
|
66
|
50
|
<template slot-scope="scope">{{parseTime(scope.row.start_time, "{m}-{d} {h}:{i}")}}</template>
|
|
@@ -89,12 +73,119 @@
|
89
|
73
|
>{{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}</template>
|
90
|
74
|
</el-table-column>
|
91
|
75
|
</el-table>
|
|
76
|
+ <div class="NoData" v-show="advice_groups.length == 0">
|
|
77
|
+ <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt>
|
|
78
|
+ </div>
|
92
|
79
|
</div>
|
93
|
80
|
</template>
|
94
|
81
|
|
95
|
82
|
<script>
|
96
|
83
|
import { parseTime } from '@/utils'
|
97
|
84
|
|
|
85
|
+export default {
|
|
86
|
+ name: 'statOrder',
|
|
87
|
+ data () {
|
|
88
|
+ return {
|
|
89
|
+ title: '临时医嘱 ',
|
|
90
|
+ template_id: 0,
|
|
91
|
+ tableDate: []
|
|
92
|
+ }
|
|
93
|
+ },
|
|
94
|
+ props: {
|
|
95
|
+ doctor_map: {
|
|
96
|
+ type: Object
|
|
97
|
+ },
|
|
98
|
+ advice_groups: {
|
|
99
|
+ type: Array,
|
|
100
|
+ default: () => {
|
|
101
|
+ return []
|
|
102
|
+ }
|
|
103
|
+ }
|
|
104
|
+ },
|
|
105
|
+ created () {
|
|
106
|
+ this.template_id = this.$store.getters.user.template_info.template_id
|
|
107
|
+ },
|
|
108
|
+ methods: {
|
|
109
|
+ setAdvices (advices) {
|
|
110
|
+ if (advices == null) {
|
|
111
|
+ advices = []
|
|
112
|
+ }
|
|
113
|
+ this.tableDate.splice(0, this.tableDate.length)
|
|
114
|
+ this.tableDate.push(...advices)
|
|
115
|
+ },
|
|
116
|
+ parseTime (time, layout) {
|
|
117
|
+ if (time == 0) {
|
|
118
|
+ return ''
|
|
119
|
+ }
|
|
120
|
+ return parseTime(time, layout)
|
|
121
|
+ },
|
|
122
|
+ createMedicalOrder (row) {
|
|
123
|
+ if (row.parent_id > 0) {
|
|
124
|
+ var spliceIndex = -1
|
|
125
|
+ for (let index = this.tableDate.length - 1; ; index--) {
|
|
126
|
+ if (this.tableDate[index].parent_id === row.parent_id) {
|
|
127
|
+ spliceIndex = index
|
|
128
|
+ break
|
|
129
|
+ } else if (this.tableDate[index].id === row.parent_id) {
|
|
130
|
+ spliceIndex = index
|
|
131
|
+ break
|
|
132
|
+ }
|
|
133
|
+ }
|
|
134
|
+ if (spliceIndex > -1) {
|
|
135
|
+ spliceIndex += 1
|
|
136
|
+ if (spliceIndex === this.tableDate.length) {
|
|
137
|
+ this.tableDate.push(row)
|
|
138
|
+ } else {
|
|
139
|
+ var swapData = this.tableDate.splice(spliceIndex)
|
|
140
|
+ this.tableDate.push(row)
|
|
141
|
+ this.tableDate = this.tableDate.concat(swapData)
|
|
142
|
+ }
|
|
143
|
+ }
|
|
144
|
+ } else {
|
|
145
|
+ this.tableDate.unshift(row)
|
|
146
|
+ }
|
|
147
|
+ },
|
|
148
|
+ delMedicalOrder (row) {
|
|
149
|
+ if (row.parent_id > 0) {
|
|
150
|
+ var rslen = this.tableDate.length
|
|
151
|
+ for (let i = 0; i < rslen; i++) {
|
|
152
|
+ if (this.tableDate[i].id == row.id) {
|
|
153
|
+ this.tableDate.splice(i, 1)
|
|
154
|
+ break
|
|
155
|
+ }
|
|
156
|
+ }
|
|
157
|
+ } else {
|
|
158
|
+ var resetTableData = this.tableDate
|
|
159
|
+ this.tableDate = []
|
|
160
|
+ var that = this
|
|
161
|
+ var rslen = resetTableData.length
|
|
162
|
+ for (let i = 0; i < rslen; i++) {
|
|
163
|
+ if (
|
|
164
|
+ resetTableData[i].id != row.id &&
|
|
165
|
+ resetTableData[i].parent_id != row.id
|
|
166
|
+ ) {
|
|
167
|
+ that.tableDate.push(resetTableData[i])
|
|
168
|
+ }
|
|
169
|
+ }
|
|
170
|
+ }
|
|
171
|
+ },
|
|
172
|
+ executionMedicalOrder (row) {
|
|
173
|
+ var alen = this.tableDate.length
|
|
174
|
+ for (let index = 0; index < alen; index++) {
|
|
175
|
+ if (this.tableDate[index].id == row.id) {
|
|
176
|
+ this.tableDate[index].execution_state = 1
|
|
177
|
+ this.tableDate[index].execution_staff = row.execution_staff
|
|
178
|
+ this.tableDate[index].execution_time = row.execution_time
|
|
179
|
+ this.tableDate[index].checker = row.checker
|
|
180
|
+ break
|
|
181
|
+ }
|
|
182
|
+ }
|
|
183
|
+ }
|
|
184
|
+ }
|
|
185
|
+}
|
|
186
|
+</script>
|
|
187
|
+import { parseTime } from '@/utils'
|
|
188
|
+
|
98
|
189
|
export default {
|
99
|
190
|
name: 'statOrder',
|
100
|
191
|
data () {
|
|
@@ -195,10 +286,9 @@ export default {
|
195
|
286
|
},
|
196
|
287
|
created () {
|
197
|
288
|
this.template_id = this.$store.getters.user.template_info.template_id
|
198
|
|
- console.log('this是什么东西', this.advice_groups)
|
199
|
289
|
}
|
200
|
|
-}
|
201
|
290
|
|
|
291
|
+}
|
202
|
292
|
</script>
|
203
|
293
|
|
204
|
294
|
<style rel="stylesheet/scss" lang="scss" scoped>
|