@indfnd/common-mobile 1.0.53 → 1.0.54

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.54](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.53...v1.0.54) (2026-03-10)
6
+
7
+
8
+ ### Features
9
+
10
+ * 获取首页地址 ([3a4b62c](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/commit/3a4b62ce8eaa7feee71ff83f78daea6c38866d75))
11
+
5
12
  ### [1.0.53](http://git.inspur.com/imp-ec/ind-front/ind-common-mobile-front/compare/v1.0.52...v1.0.53) (2026-03-06)
6
13
 
7
14
 
@@ -3,7 +3,7 @@ import { getQuarterNum, getHalfYearNum, formatDate, useConfig, getLocalStorage,
3
3
  import Vue$1 from "vue";
4
4
  import { DropdownMenu as DropdownMenu$1, DropdownItem as DropdownItem$1, Message, LoadingBar, Spin } from "view-design";
5
5
  const name$1 = "@indfnd/common-mobile";
6
- const version$2 = "1.0.52";
6
+ const version$2 = "1.0.53";
7
7
  const author$1 = "huxuetong";
8
8
  const publishConfig = {
9
9
  registry: "https://registry.npmjs.org/"
@@ -22938,7 +22938,8 @@ const __vue2_script$r = {
22938
22938
  showHeader: {
22939
22939
  type: Boolean,
22940
22940
  default: false
22941
- }
22941
+ },
22942
+ enableSelectAll: Boolean
22942
22943
  },
22943
22944
  data() {
22944
22945
  return {
@@ -23017,7 +23018,7 @@ const __vue2_script$r = {
23017
23018
  }
23018
23019
  },
23019
23020
  isRowSelectable(params2) {
23020
- return this.multiple || !this.multiple && !(params2.data.children && params2.data.children.length);
23021
+ return this.enableSelectAll || this.multiple || !this.multiple && !(params2.data.children && params2.data.children.length);
23021
23022
  },
23022
23023
  async initConfig() {
23023
23024
  this.dataInited = false;
@@ -23144,7 +23145,7 @@ const __vue2_script$r = {
23144
23145
  return;
23145
23146
  }
23146
23147
  }
23147
- if (this.isTree) {
23148
+ if (this.isTree && !this.enableSelectAll) {
23148
23149
  this.selectedRows = _.filter(selectedRows, (d) => {
23149
23150
  var _a2;
23150
23151
  return !((_a2 = d == null ? void 0 : d.children) == null ? void 0 : _a2.length);