|
@@ -6,7 +6,7 @@
|
6
|
6
|
<span class="line"></span>
|
7
|
7
|
</h2>
|
8
|
8
|
|
9
|
|
- <!-- <div class="newDiv">
|
|
9
|
+ <!-- <div class="newDiv">
|
10
|
10
|
<table class="table">
|
11
|
11
|
<tr>
|
12
|
12
|
<th width="12%">开嘱医生</th>
|
|
@@ -55,59 +55,56 @@
|
55
|
55
|
</div>
|
56
|
56
|
<div class="NoData" v-show="advice_groups.length == 0">
|
57
|
57
|
<img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
|
58
|
|
- </div> -->
|
|
58
|
+ </div>-->
|
59
|
59
|
<el-table :data="statOrderdate" border style="width: 100%">
|
60
|
|
- <el-table-column fixed label="开嘱医生" width="100">
|
61
|
|
- <template slot-scope="scope">
|
62
|
|
- {{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}
|
63
|
|
- </template>
|
|
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
|
64
|
</el-table-column>
|
65
|
|
- <el-table-column label="开始时间" width="100" type="index"
|
66
|
|
- >
|
67
|
|
- <template slot-scope="scope">
|
68
|
|
- {{parseTime(scope.row.start_time, "{m}-{d} {h}:{i}")}}
|
69
|
|
- </template>
|
|
65
|
+ <el-table-column label="开始时间" width="100" type="index">
|
|
66
|
+ <template slot-scope="scope">{{parseTime(scope.row.start_time, "{m}-{d} {h}:{i}")}}</template>
|
70
|
67
|
</el-table-column>
|
71
|
|
- <el-table-column label="医嘱内容" width="100">
|
|
68
|
+ <el-table-column label="医嘱内容" width="100">
|
72
|
69
|
<template slot-scope="scope">
|
73
|
|
- <span>{{scope.row.advice_name }}</span>
|
74
|
|
- <!-- <span>{{scope.row.drug_spec}}{{scope.row.drug_spec_unit}} * {{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span> -->
|
75
|
|
- <span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
|
76
|
|
- <span
|
77
|
|
- v-if="scope.row.prescribing_number"
|
78
|
|
- >{{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span>
|
79
|
|
- <span v-if="scope.row.single_dose">单次用量{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
|
80
|
|
- <span v-if="scope.row.parent_id == 0">{{scope.row.delivery_way}}</span>
|
81
|
|
- <span v-if="scope.row.parent_id == 0">{{scope.row.execution_frequency}}</span>
|
82
|
|
- <!-- <span v-if="scope.row.parent_id == 0&&scope.row.remark.length > 0">({{scope.row.remark}})</span> -->
|
|
70
|
+ <span>{{scope.row.advice_name }}</span>
|
|
71
|
+ <!-- <span>{{scope.row.drug_spec}}{{scope.row.drug_spec_unit}} * {{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span> -->
|
|
72
|
+ <span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
|
|
73
|
+ <span
|
|
74
|
+ v-if="scope.row.prescribing_number"
|
|
75
|
+ >{{scope.row.prescribing_number}}{{scope.row.prescribing_number_unit}}</span>
|
|
76
|
+ <span
|
|
77
|
+ v-if="scope.row.single_dose"
|
|
78
|
+ >单次用量{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
|
|
79
|
+ <span v-if="scope.row.parent_id == 0">{{scope.row.delivery_way}}</span>
|
|
80
|
+ <span v-if="scope.row.parent_id == 0">{{scope.row.execution_frequency}}</span>
|
|
81
|
+ <!-- <span v-if="scope.row.parent_id == 0&&scope.row.remark.length > 0">({{scope.row.remark}})</span> -->
|
83
|
82
|
</template>
|
84
|
83
|
</el-table-column>
|
85
|
|
- <el-table-column label="执行时间" width="100">
|
86
|
|
- <template slot-scope="scope">
|
87
|
|
- {{parseTime(scope.row.execution_time, "{m}-{d} {h}:{i}")}}
|
88
|
|
- </template>
|
|
84
|
+ <el-table-column label="执行时间" width="100">
|
|
85
|
+ <template slot-scope="scope">{{parseTime(scope.row.execution_time, "{m}-{d} {h}:{i}")}}</template>
|
89
|
86
|
</el-table-column>
|
90
|
87
|
<el-table-column label="执行护士" width="200">
|
91
|
|
- <template slot-scope="scope">
|
92
|
|
- {{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}
|
93
|
|
- </template>
|
|
88
|
+ <template
|
|
89
|
+ slot-scope="scope"
|
|
90
|
+ >{{scope.row.checker != 0 ? (doctor_map[scope.row.checker] != undefined ? doctor_map[scope.row.checker].name : "") : ""}}</template>
|
94
|
91
|
</el-table-column>
|
95
|
92
|
</el-table>
|
96
|
93
|
</div>
|
97
|
94
|
</template>
|
98
|
95
|
|
99
|
96
|
<script>
|
100
|
|
-import { parseTime } from '@/utils'
|
|
97
|
+import { parseTime } from "@/utils";
|
101
|
98
|
|
102
|
99
|
export default {
|
103
|
|
- name: 'statOrder',
|
104
|
|
- data () {
|
|
100
|
+ name: "statOrder",
|
|
101
|
+ data() {
|
105
|
102
|
return {
|
106
|
|
- title: '临时医嘱 ',
|
|
103
|
+ title: "临时医嘱 ",
|
107
|
104
|
template_id: 0,
|
108
|
105
|
tableDate: [],
|
109
|
106
|
statOrderdate: []
|
110
|
|
- }
|
|
107
|
+ };
|
111
|
108
|
},
|
112
|
109
|
props: {
|
113
|
110
|
doctor_map: {
|
|
@@ -116,98 +113,98 @@ export default {
|
116
|
113
|
advice_groups: {
|
117
|
114
|
type: Array,
|
118
|
115
|
default: () => {
|
119
|
|
- return []
|
|
116
|
+ return [];
|
120
|
117
|
}
|
121
|
118
|
}
|
122
|
119
|
},
|
123
|
|
- created () {
|
124
|
|
- this.template_id = this.$store.getters.user.template_info.template_id
|
125
|
|
- let arr = [...this.advice_groups]
|
126
|
|
- let arr2 = []
|
|
120
|
+ created() {
|
|
121
|
+ this.template_id = this.$store.getters.user.template_info.template_id;
|
|
122
|
+ let arr = [...this.advice_groups];
|
|
123
|
+ let arr2 = [];
|
127
|
124
|
arr.map(item => {
|
128
|
|
- console.log(item.advices)
|
129
|
|
- arr2.push(...item.advices)
|
130
|
|
- })
|
131
|
|
- this.statOrderdate = arr2
|
|
125
|
+ console.log(item.advices);
|
|
126
|
+ arr2.push(...item.advices);
|
|
127
|
+ });
|
|
128
|
+ this.statOrderdate = arr2;
|
132
|
129
|
},
|
133
|
130
|
methods: {
|
134
|
|
- setAdvices (advices) {
|
|
131
|
+ setAdvices(advices) {
|
135
|
132
|
if (advices == null) {
|
136
|
|
- advices = []
|
|
133
|
+ advices = [];
|
137
|
134
|
}
|
138
|
|
- this.tableDate.splice(0, this.tableDate.length)
|
139
|
|
- this.tableDate.push(...advices)
|
|
135
|
+ this.tableDate.splice(0, this.tableDate.length);
|
|
136
|
+ this.tableDate.push(...advices);
|
140
|
137
|
},
|
141
|
|
- parseTime (time, layout) {
|
|
138
|
+ parseTime(time, layout) {
|
142
|
139
|
if (time == 0) {
|
143
|
|
- return ''
|
|
140
|
+ return "";
|
144
|
141
|
}
|
145
|
|
- return parseTime(time, layout)
|
|
142
|
+ return parseTime(time, layout);
|
146
|
143
|
},
|
147
|
|
- createMedicalOrder (row) {
|
|
144
|
+ createMedicalOrder(row) {
|
148
|
145
|
if (row.parent_id > 0) {
|
149
|
|
- var spliceIndex = -1
|
|
146
|
+ var spliceIndex = -1;
|
150
|
147
|
for (let index = this.tableDate.length - 1; ; index--) {
|
151
|
148
|
if (this.tableDate[index].parent_id === row.parent_id) {
|
152
|
|
- spliceIndex = index
|
153
|
|
- break
|
|
149
|
+ spliceIndex = index;
|
|
150
|
+ break;
|
154
|
151
|
} else if (this.tableDate[index].id === row.parent_id) {
|
155
|
|
- spliceIndex = index
|
156
|
|
- break
|
|
152
|
+ spliceIndex = index;
|
|
153
|
+ break;
|
157
|
154
|
}
|
158
|
155
|
}
|
159
|
156
|
if (spliceIndex > -1) {
|
160
|
|
- spliceIndex += 1
|
|
157
|
+ spliceIndex += 1;
|
161
|
158
|
if (spliceIndex === this.tableDate.length) {
|
162
|
|
- this.tableDate.push(row)
|
|
159
|
+ this.tableDate.push(row);
|
163
|
160
|
} else {
|
164
|
|
- var swapData = this.tableDate.splice(spliceIndex)
|
165
|
|
- this.tableDate.push(row)
|
166
|
|
- this.tableDate = this.tableDate.concat(swapData)
|
|
161
|
+ var swapData = this.tableDate.splice(spliceIndex);
|
|
162
|
+ this.tableDate.push(row);
|
|
163
|
+ this.tableDate = this.tableDate.concat(swapData);
|
167
|
164
|
}
|
168
|
165
|
}
|
169
|
166
|
} else {
|
170
|
|
- this.tableDate.unshift(row)
|
|
167
|
+ this.tableDate.unshift(row);
|
171
|
168
|
}
|
172
|
169
|
},
|
173
|
|
- delMedicalOrder (row) {
|
|
170
|
+ delMedicalOrder(row) {
|
174
|
171
|
if (row.parent_id > 0) {
|
175
|
|
- var rslen = this.tableDate.length
|
|
172
|
+ var rslen = this.tableDate.length;
|
176
|
173
|
for (let i = 0; i < rslen; i++) {
|
177
|
174
|
if (this.tableDate[i].id == row.id) {
|
178
|
|
- this.tableDate.splice(i, 1)
|
179
|
|
- break
|
|
175
|
+ this.tableDate.splice(i, 1);
|
|
176
|
+ break;
|
180
|
177
|
}
|
181
|
178
|
}
|
182
|
179
|
} else {
|
183
|
|
- var resetTableData = this.tableDate
|
184
|
|
- this.tableDate = []
|
185
|
|
- var that = this
|
186
|
|
- var rslen = resetTableData.length
|
|
180
|
+ var resetTableData = this.tableDate;
|
|
181
|
+ this.tableDate = [];
|
|
182
|
+ var that = this;
|
|
183
|
+ var rslen = resetTableData.length;
|
187
|
184
|
for (let i = 0; i < rslen; i++) {
|
188
|
185
|
if (
|
189
|
186
|
resetTableData[i].id != row.id &&
|
190
|
187
|
resetTableData[i].parent_id != row.id
|
191
|
188
|
) {
|
192
|
|
- that.tableDate.push(resetTableData[i])
|
|
189
|
+ that.tableDate.push(resetTableData[i]);
|
193
|
190
|
}
|
194
|
191
|
}
|
195
|
192
|
}
|
196
|
193
|
},
|
197
|
|
- executionMedicalOrder (row) {
|
198
|
|
- var alen = this.tableDate.length
|
|
194
|
+ executionMedicalOrder(row) {
|
|
195
|
+ var alen = this.tableDate.length;
|
199
|
196
|
for (let index = 0; index < alen; index++) {
|
200
|
197
|
if (this.tableDate[index].id == row.id) {
|
201
|
|
- this.tableDate[index].execution_state = 1
|
202
|
|
- this.tableDate[index].execution_staff = row.execution_staff
|
203
|
|
- this.tableDate[index].execution_time = row.execution_time
|
204
|
|
- this.tableDate[index].checker = row.checker
|
205
|
|
- break
|
|
198
|
+ this.tableDate[index].execution_state = 1;
|
|
199
|
+ this.tableDate[index].execution_staff = row.execution_staff;
|
|
200
|
+ this.tableDate[index].execution_time = row.execution_time;
|
|
201
|
+ this.tableDate[index].checker = row.checker;
|
|
202
|
+ break;
|
206
|
203
|
}
|
207
|
204
|
}
|
208
|
205
|
}
|
209
|
206
|
}
|
210
|
|
-}
|
|
207
|
+};
|
211
|
208
|
</script>
|
212
|
209
|
|
213
|
210
|
<style rel="stylesheet/scss" lang="scss" scoped>
|