Browse Source

表格行点击

戴艳蓉 3 years ago
parent
commit
ef58cf2f98
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/components/ex-table/main.vue

+ 4 - 1
src/components/ex-table/main.vue

@@ -42,6 +42,7 @@
       v-on="$listeners"
       @selection-change="tableSelection = $event"
       :span-method="arraySpanMethod"
+      @row-click="RowClick"
       style="width: 100%"
     >
       <template v-for="(column, index) in columns">
@@ -336,7 +337,9 @@ export default {
         }
       }
     },
-
+    RowClick(e) {
+      this.$$emit("RowClick", e);
+    },
     //行拖拽
     rowDrop() {
       const tbody = document.querySelector(