mooho-base-admin-plus 2.10.26 → 2.10.28
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.
package/package.json
CHANGED
|
@@ -2402,6 +2402,8 @@
|
|
|
2402
2402
|
column = column.substr(2);
|
|
2403
2403
|
} else if (column.startsWith('y_')) {
|
|
2404
2404
|
column = column.substr(2);
|
|
2405
|
+
} else if (column.startsWith('v_')) {
|
|
2406
|
+
column = column.substr(2);
|
|
2405
2407
|
}
|
|
2406
2408
|
|
|
2407
2409
|
if (column == 'keyword') {
|
|
@@ -2871,6 +2873,11 @@
|
|
|
2871
2873
|
this.selectedData.push(this.data[index]);
|
|
2872
2874
|
this.data[index]._checked = true;
|
|
2873
2875
|
}
|
|
2876
|
+
|
|
2877
|
+
/**
|
|
2878
|
+
* 选中项变化事件
|
|
2879
|
+
*/
|
|
2880
|
+
this.$emit('on-select-change');
|
|
2874
2881
|
}
|
|
2875
2882
|
|
|
2876
2883
|
/**
|