huangyw 2 years ago
parent
commit
60d80f0967
1 changed files with 11 additions and 13 deletions
  1. 11 13
      src/xt_pages/Pharmacy/DrugDispensing.vue

+ 11 - 13
src/xt_pages/Pharmacy/DrugDispensing.vue View File

177
             ref="table_01"
177
             ref="table_01"
178
             :height="tableHeight"
178
             :height="tableHeight"
179
             :data="tableData"
179
             :data="tableData"
180
-            :summary-method="getSummaries_t1"
181
-            show-summary
180
+            
182
             border
181
             border
183
             highlight-current-row
182
             highlight-current-row
184
             style="width: 100%"
183
             style="width: 100%"
276
             ref="table_01"
275
             ref="table_01"
277
             :height="tableHeight"
276
             :height="tableHeight"
278
             :data="tableData"
277
             :data="tableData"
279
-            :summary-method="getSummaries_t2"
280
-            show-summary
278
+           
281
             border
279
             border
282
             highlight-current-row
280
             highlight-current-row
283
             style="width: 100%"
281
             style="width: 100%"
1035
     this.getrouteofadministration();
1033
     this.getrouteofadministration();
1036
     this.getgetpartitionlist();
1034
     this.getgetpartitionlist();
1037
   },
1035
   },
1038
-  updated() {
1039
-    this.$nextTick(() => {
1040
-      if (this.$refs["table_01"]) {
1041
-        this.$refs["table_01"].doLayout();
1042
-      } else if (this.$refs["table_02"]) {
1043
-        this.$refs["table_02"].doLayout();
1044
-      }
1045
-    });
1046
-  },
1036
+  // updated() {
1037
+  //   this.$nextTick(() => {
1038
+  //     if (this.$refs["table_01"]) {
1039
+  //       this.$refs["table_01"].doLayout();
1040
+  //     } else if (this.$refs["table_02"]) {
1041
+  //       this.$refs["table_02"].doLayout();
1042
+  //     }
1043
+  //   });
1044
+  // },
1047
 };
1045
 };
1048
 </script>
1046
 </script>
1049
 
1047