@lambo-design-mobile/workflow-approve 1.0.0-beta.7 → 1.0.0-beta.8

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,16 @@
1
1
  # Changelog
2
+ ## [1.0.0-beta.8](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.7...@lambo-design-mobile/workflow-approve@1.0.0-beta.8) (2025-03-17)
3
+
4
+
5
+ ### ♻️ Code Refactoring | 代码重构
6
+
7
+ * **workflow-approve:** 修改 getNextNodes 请求方法为 POST ([5486961](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/54869618e32ee13f26dcef21507e2309d8ac2469))
8
+
9
+
10
+ ### 🐛 Bug Fixes | Bug 修复
11
+
12
+ * **workflow-approve:** 修复待办列表卡片中的表单链接错误 ([0575ae8](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/0575ae81a488766cdad79f335d24fa2ecf2450da))
13
+
2
14
  ## [1.0.0-beta.7](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.6...@lambo-design-mobile/workflow-approve@1.0.0-beta.7) (2024-12-03)
3
15
 
4
16
 
package/api.js CHANGED
@@ -165,7 +165,7 @@ export const getNextNodes = (procId, taskNode) => {
165
165
  };
166
166
  return ajax.request({
167
167
  url: config.smartFlowServerContext + "/manage/processTodo/getNextNodes",
168
- method: 'get',
168
+ method: 'post',
169
169
  params: params,
170
170
  })
171
171
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design-mobile/workflow-approve",
3
- "version": "1.0.0-beta.7",
3
+ "version": "1.0.0-beta.8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -14,8 +14,8 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@lambo-design-mobile/lambo-scan-code": "^1.0.0-beta.1",
17
- "@lambo-design-mobile/upload-file": "^1.0.0-beta.9",
18
- "@lambo-design-mobile/shared": "^1.0.0-beta.13"
17
+ "@lambo-design-mobile/upload-file": "^1.0.0-beta.10",
18
+ "@lambo-design-mobile/shared": "^1.0.0-beta.18"
19
19
  },
20
20
  "scripts": {
21
21
  "release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
@@ -134,8 +134,8 @@ export default {
134
134
  procType: item.procType,
135
135
  procKey: result.data[0].procKey,
136
136
  handleButtons: result.data[0].handleButtons,
137
- appFormUrl: result.data[0].appApprovalUrl,
138
- appDetailUrl: result.data[0].appDetailsUrl,
137
+ appFormUrl: item.appFormUrl,
138
+ appDetailUrl: item.appDetailUrl,
139
139
  }
140
140
  });
141
141
  }
@@ -167,8 +167,8 @@ export default {
167
167
  procType: item.procType,
168
168
  procKey: result.data[0].procKey,
169
169
  handleButtons: result.data[0].handleButtons,
170
- appFormUrl: result.data[0].appApprovalUrl,
171
- appDetailUrl: result.data[0].appDetailsUrl,
170
+ appFormUrl: item.appFormUrl,
171
+ appDetailUrl: item.appDetailUrl,
172
172
  }
173
173
  });
174
174
  }
@@ -234,4 +234,4 @@ export default {
234
234
  flex: 0 0 auto;
235
235
  }
236
236
 
237
- </style>
237
+ </style>