meixioacomponent 0.5.98 → 0.5.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -112985,6 +112985,7 @@ const tableSectionMixins = {
|
|
|
112985
112985
|
methods: {
|
|
112986
112986
|
// 表格行被选中时
|
|
112987
112987
|
handleSelectionChange(val) {
|
|
112988
|
+
this.$emit('handleSelectionChange', val);
|
|
112988
112989
|
if (val.length <= 0) return;
|
|
112989
112990
|
const name = this.$options.name;
|
|
112990
112991
|
|
|
@@ -113001,8 +113002,6 @@ const tableSectionMixins = {
|
|
|
113001
113002
|
} else if (name === "basePlainTable") {
|
|
113002
113003
|
this.checkValue = val;
|
|
113003
113004
|
}
|
|
113004
|
-
|
|
113005
|
-
this.$emit('handleSelectionChange', val);
|
|
113006
113005
|
},
|
|
113007
113006
|
|
|
113008
113007
|
getRowKey(row) {
|
|
@@ -112994,6 +112994,7 @@ const tableSectionMixins = {
|
|
|
112994
112994
|
methods: {
|
|
112995
112995
|
// 表格行被选中时
|
|
112996
112996
|
handleSelectionChange(val) {
|
|
112997
|
+
this.$emit('handleSelectionChange', val);
|
|
112997
112998
|
if (val.length <= 0) return;
|
|
112998
112999
|
const name = this.$options.name;
|
|
112999
113000
|
|
|
@@ -113010,8 +113011,6 @@ const tableSectionMixins = {
|
|
|
113010
113011
|
} else if (name === "basePlainTable") {
|
|
113011
113012
|
this.checkValue = val;
|
|
113012
113013
|
}
|
|
113013
|
-
|
|
113014
|
-
this.$emit('handleSelectionChange', val);
|
|
113015
113014
|
},
|
|
113016
113015
|
|
|
113017
113016
|
getRowKey(row) {
|