Browse Source

表格渲染

xiaoming_global 5 years ago
parent
commit
4cc2e228ea
3 changed files with 479 additions and 499 deletions
  1. 471 473
      src/pages/main/today/TodayTab.vue
  2. 2 22
      src/pages/main/today/statOrder.vue
  3. 6 4
      src/pages/monitoring/index.vue

File diff suppressed because it is too large
+ 471 - 473
src/pages/main/today/TodayTab.vue


+ 2 - 22
src/pages/main/today/statOrder.vue View File

@@ -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
 

+ 6 - 4
src/pages/monitoring/index.vue View File

@@ -62,7 +62,7 @@
62 62
           </li>
63 63
         </ul>
64 64
       </div>
65
-      <!-- <van-list
65
+      <van-list
66 66
         v-model="loading"
67 67
         :finished="finished"
68 68
         finished-text="  "
@@ -167,8 +167,8 @@
167 167
             alt
168 168
           />
169 169
         </div>
170
-      </van-list>-->
171
-      <div class="monitoringTable">
170
+      </van-list>
171
+      <!-- <div class="monitoringTable">
172 172
         <el-table :data="tableData" border style="width: 100%" class="newTable">
173 173
           <el-table-column fixed prop="name" label="姓名" width="80" align="center">
174 174
             <template slot-scope="scope">{{scope.row.patient.name}}</template>
@@ -224,7 +224,7 @@
224 224
             </template>
225 225
           </el-table-column>
226 226
         </el-table>
227
-      </div>
227
+      </div> -->
228 228
     </div>
229 229
     <side-bar :active_index="1"></side-bar>
230 230
     <mt-datetime-picker
@@ -278,6 +278,7 @@ export default {
278 278
   },
279 279
   methods: {
280 280
     clickfunction: function(val) {
281
+      console.log("val是什么 ",val)
281 282
       this.$router.push({
282 283
         path: "/details",
283 284
         query: {
@@ -352,6 +353,7 @@ export default {
352 353
             this.schedule_date = item.schedule_date;
353 354
             arr3.push(item.patient);
354 355
           });
356
+          console.log("arr3",arr3)
355 357
           this.tableData = arr2;
356 358
         }
357 359
       });