@lambo-design-mobile/workflow-approve 1.0.0-beta.13 → 1.0.0-beta.14

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
@@ -1,4 +1,11 @@
1
1
  # Changelog
2
+ ## [1.0.0-beta.14](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.13...@lambo-design-mobile/workflow-approve@1.0.0-beta.14) (2025-03-18)
3
+
4
+
5
+ ### ✨ Features | 新功能
6
+
7
+ * **workflow-approve:** 初始化流程历史记录的展开项 ([3e653e7](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/3e653e7cbadcfead327f731eb73ac9235bf85430))
8
+
2
9
  ## [1.0.0-beta.13](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.12...@lambo-design-mobile/workflow-approve@1.0.0-beta.13) (2025-03-18)
3
10
 
4
11
  ## [1.0.0-beta.12](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.11...@lambo-design-mobile/workflow-approve@1.0.0-beta.12) (2025-03-18)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design-mobile/workflow-approve",
3
- "version": "1.0.0-beta.13",
3
+ "version": "1.0.0-beta.14",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -379,7 +379,7 @@ export default {
379
379
 
380
380
  bpmnViewer: null,
381
381
 
382
- activeNames: [0],
382
+ activeNames: [],
383
383
  popupShow: false,
384
384
 
385
385
  nextNodePopupShow: false,
@@ -469,6 +469,7 @@ export default {
469
469
  getProcessHis(this.applyId, this.instanceId, this.procId, this.taskId).then(resp => {
470
470
  if (resp.data.code === '200') {
471
471
  this.processHistory = resp.data.data
472
+ this.activeNames = this.processHistory.map((_, index) => index);
472
473
  }
473
474
  })
474
475
  },