@lambo-design-mobile/workflow-approve 1.0.0-beta.25 → 1.0.0-beta.26

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.26](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.25...@lambo-design-mobile/workflow-approve@1.0.0-beta.26) (2026-03-30)
3
+
4
+
5
+ ### ✨ Features | 新功能
6
+
7
+ * **审批组件:** 连续减签同一人失败问题修复 ([3815640](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/3815640a78b55b92aa9eb352d8e92f5d963f53b3))
8
+
2
9
  ## [1.0.0-beta.25](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.24...@lambo-design-mobile/workflow-approve@1.0.0-beta.25) (2026-03-18)
3
10
 
4
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design-mobile/workflow-approve",
3
- "version": "1.0.0-beta.25",
3
+ "version": "1.0.0-beta.26",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -15,8 +15,8 @@
15
15
  "devDependencies": {
16
16
  "standard-version": "^9.5.0",
17
17
  "@lambo-design-mobile/lambo-scan-code": "^1.0.0-beta.1",
18
- "@lambo-design-mobile/upload-file": "^1.0.0-beta.16",
19
- "@lambo-design-mobile/shared": "^1.0.0-beta.21"
18
+ "@lambo-design-mobile/shared": "^1.0.0-beta.21",
19
+ "@lambo-design-mobile/upload-file": "^1.0.0-beta.16"
20
20
  },
21
21
  "scripts": {
22
22
  "release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
@@ -1129,7 +1129,7 @@ export default {
1129
1129
  } else if (updateType === '83') {
1130
1130
  getUnapprovedListOfMultiNode(self.taskId).then(res => {
1131
1131
  if (res.data.code === '200') {
1132
- self.unapprovedAssigneeList = res.data.data.map(item => ({...item, userId: item.auditId, organName: item.auditUserOrgan ? item.auditUserOrgan.split(':')[1] : '未知部门'}))
1132
+ self.unapprovedAssigneeList = res.data.data.map(item => ({...item, userName: item.auditName, userId: item.auditId, organName: item.auditUserOrgan ? item.auditUserOrgan.split(':')[1] : '未知部门'}))
1133
1133
  self.selectReductionUserPopupShow = true
1134
1134
  } else {
1135
1135
  Toast.fail(resp.data.message)
@@ -1657,6 +1657,11 @@ export default {
1657
1657
  self.getProcessAttributes(val)
1658
1658
  }
1659
1659
  },
1660
+ selectReductionUserPopupShow(newVal) {
1661
+ if (newVal) {
1662
+ this.reductionUsers = [];
1663
+ }
1664
+ }
1660
1665
  }
1661
1666
 
1662
1667
  };
@@ -638,7 +638,7 @@ export default {
638
638
 
639
639
  if (matchedRecords.length > 0) {
640
640
  const getTime = (record) => {
641
- const timeStr = record.auditDate || record.createTime;
641
+ const timeStr = record.auditDate || record.startDate || record.createTime;
642
642
  return new Date(timeStr).getTime();
643
643
  };
644
644