mooho-base-admin-plus 2.10.27 → 2.10.29

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "2.10.27",
4
+ "version": "2.10.29",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -2873,6 +2873,11 @@
2873
2873
  this.selectedData.push(this.data[index]);
2874
2874
  this.data[index]._checked = true;
2875
2875
  }
2876
+
2877
+ /**
2878
+ * 选中项变化事件
2879
+ */
2880
+ this.$emit('on-select-change');
2876
2881
  }
2877
2882
 
2878
2883
  /**
@@ -523,7 +523,7 @@ export default {
523
523
  let data = this.parseData(model, expression);
524
524
 
525
525
  if (data == null) {
526
- result += expression;
526
+ result += 'null';
527
527
  } else if (typeof data === 'object') {
528
528
  result += expression;
529
529
  } else if (isNaN(data) || data.toString().length > 16) {