Browse Source

样式更改

xiaoming_global 5 years ago
parent
commit
1b5459a591
2 changed files with 30 additions and 15 deletions
  1. 1 0
      src/pages/main/today/TodayTab.vue
  2. 29 15
      src/pages/main/today/statOrder.vue

+ 1 - 0
src/pages/main/today/TodayTab.vue View File

833
 
833
 
834
                   initGroupBlock(group, advice);
834
                   initGroupBlock(group, advice);
835
                   group.advices.push(advice);
835
                   group.advices.push(advice);
836
+                  
836
                   this.advice_groups.push(group);
837
                   this.advice_groups.push(group);
837
                   group = this.newAdviceGroupObject();
838
                   group = this.newAdviceGroupObject();
838
 
839
 

+ 29 - 15
src/pages/main/today/statOrder.vue View File

56
     <div class="NoData" v-show="advice_groups.length == 0">
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 />
57
       <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
58
     </div> -->
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
       <el-table-column fixed  label="开嘱医生" width="100">
60
       <el-table-column fixed  label="开嘱医生" width="100">
61
         <template slot-scope="scope">
61
         <template slot-scope="scope">
62
            {{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}
62
            {{doctor_map[scope.row.advice_doctor] != undefined ? doctor_map[scope.row.advice_doctor].name : ""}}
71
       <el-table-column  label="医嘱内容" width="100">
71
       <el-table-column  label="医嘱内容" width="100">
72
         <template slot-scope="scope">
72
         <template slot-scope="scope">
73
                <span>{{scope.row.advice_name }}</span>
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
               <span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
75
               <span v-if="scope.row.advice_desc">{{scope.row.advice_desc}}{{scope.row.drug_spec_unit}}</span>
76
               <span
76
               <span
77
                 v-if="scope.row.prescribing_number"
77
                 v-if="scope.row.prescribing_number"
79
               <span v-if="scope.row.single_dose">单次用量{{scope.row.single_dose}}{{scope.row.single_dose_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>
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>
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
         </template>
82
         </template>
84
       </el-table-column>
83
       </el-table-column>
85
       <el-table-column  label="执行时间" width="100">
84
       <el-table-column  label="执行时间" width="100">
105
     return {
104
     return {
106
       title: '临时医嘱 ',
105
       title: '临时医嘱 ',
107
       template_id: 0,
106
       template_id: 0,
108
-      tableDate: [],
109
-      statOrderdate: []
107
+      tableDate: []
110
     }
108
     }
111
   },
109
   },
112
   props: {
110
   props: {
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
   methods: {
122
   methods: {
134
     setAdvices (advices) {
123
     setAdvices (advices) {
135
       if (advices == null) {
124
       if (advices == null) {
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
 </script>
225
 </script>
212
 
226