|
@@ -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="tableData" border style="width: 100%" v-if="tableData.length > 0">
|
|
59
|
+ <el-table :data="tableDate" border style="width: 100%">
|
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 : ""}}
|
|
@@ -116,7 +116,7 @@ export default {
|
116
|
116
|
default: () => {
|
117
|
117
|
return []
|
118
|
118
|
}
|
119
|
|
- }
|
|
119
|
+ },
|
120
|
120
|
},
|
121
|
121
|
|
122
|
122
|
methods: {
|
|
@@ -199,28 +199,8 @@ export default {
|
199
|
199
|
created () {
|
200
|
200
|
this.template_id = this.$store.getters.user.template_info.template_id
|
201
|
201
|
console.log('this是什么东西', this.advice_groups)
|
202
|
|
- console.log('tablesdata', this.tableData)
|
203
|
202
|
}
|
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
|
203
|
|
221
|
|
- // }
|
222
|
|
- // }
|
223
|
|
- // }
|
224
|
204
|
}
|
225
|
205
|
</script>
|
226
|
206
|
|