|
@@ -56,7 +56,7 @@
|
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
|
58
|
</div> -->
|
59
|
|
- <el-table :data="statOrderdate" border style="width: 100%">
|
|
59
|
+ <el-table :data="tableData" border style="width: 100%" v-if="tableData.length > 0">
|
60
|
60
|
<el-table-column fixed label="开嘱医生" width="100">
|
61
|
61
|
<template slot-scope="scope">
|
62
|
62
|
{{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}
|
|
@@ -71,7 +71,7 @@
|
71
|
71
|
<el-table-column label="医嘱内容" width="100">
|
72
|
72
|
<template slot-scope="scope">
|
73
|
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> -->
|
|
74
|
+
|
75
|
75
|
<span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
|
76
|
76
|
<span
|
77
|
77
|
v-if="scope.row.prescribing_number"
|
|
@@ -79,7 +79,6 @@
|
79
|
79
|
<span v-if="scope.row.single_dose">单次用量{{scope.row.single_dose}}{{scope.row.single_dose_unit}}</span>
|
80
|
80
|
<span v-if="scope.row.parent_id == 0">{{scope.row.delivery_way}}</span>
|
81
|
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> -->
|
83
|
82
|
</template>
|
84
|
83
|
</el-table-column>
|
85
|
84
|
<el-table-column label="执行时间" width="100">
|
|
@@ -105,8 +104,7 @@ export default {
|
105
|
104
|
return {
|
106
|
105
|
title: '临时医嘱 ',
|
107
|
106
|
template_id: 0,
|
108
|
|
- tableDate: [],
|
109
|
|
- statOrderdate: []
|
|
107
|
+ tableDate: []
|
110
|
108
|
}
|
111
|
109
|
},
|
112
|
110
|
props: {
|
|
@@ -120,16 +118,7 @@ export default {
|
120
|
118
|
}
|
121
|
119
|
}
|
122
|
120
|
},
|
123
|
|
- created () {
|
124
|
|
- this.template_id = this.$store.getters.user.template_info.template_id
|
125
|
|
- let arr = [...this.advice_groups]
|
126
|
|
- let arr2 = []
|
127
|
|
- arr.map(item => {
|
128
|
|
- console.log(item.advices)
|
129
|
|
- arr2.push(...item.advices)
|
130
|
|
- })
|
131
|
|
- this.statOrderdate = arr2
|
132
|
|
- },
|
|
121
|
+
|
133
|
122
|
methods: {
|
134
|
123
|
setAdvices (advices) {
|
135
|
124
|
if (advices == null) {
|
|
@@ -206,7 +195,32 @@ export default {
|
206
|
195
|
}
|
207
|
196
|
}
|
208
|
197
|
}
|
|
198
|
+ },
|
|
199
|
+ created () {
|
|
200
|
+ this.template_id = this.$store.getters.user.template_info.template_id
|
|
201
|
+ console.log('this是什么东西', this.advice_groups)
|
|
202
|
+ console.log('tablesdata', this.tableData)
|
209
|
203
|
}
|
|
204
|
+ // mounted () {
|
|
205
|
+ // let that = this
|
|
206
|
+ // that.$nextTick(() => {
|
|
207
|
+ // let arr = [...this.advice_groups]
|
|
208
|
+ // let arr2 = []
|
|
209
|
+ // arr.map(item => {
|
|
210
|
+ // arr2.push(...item.advices)
|
|
211
|
+ // })
|
|
212
|
+ // console.log('arr', arr)
|
|
213
|
+ // that.tableData = arr2
|
|
214
|
+ // console.log('数据aaaaaaaaaaa', this.tableData)
|
|
215
|
+ // })
|
|
216
|
+ // }
|
|
217
|
+ // watch:{
|
|
218
|
+ // advice_groups(val,oldVal){
|
|
219
|
+ // if(val !== oldVal){
|
|
220
|
+
|
|
221
|
+ // }
|
|
222
|
+ // }
|
|
223
|
+ // }
|
210
|
224
|
}
|
211
|
225
|
</script>
|
212
|
226
|
|