@steedos/service-core-objects 3.0.14-beta.1 → 3.0.14-beta.2
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.
|
@@ -153,7 +153,7 @@ Steedos.StandardObjects = {
|
|
|
153
153
|
console.error('instanceId not exists');
|
|
154
154
|
return;
|
|
155
155
|
}
|
|
156
|
-
Steedos.authRequest(Steedos.absoluteUrl(
|
|
156
|
+
Steedos.authRequest(Steedos.absoluteUrl(`/api/workflow/instance/check_is_removed/${instanceId}`), {
|
|
157
157
|
type: 'POST',
|
|
158
158
|
async: false,
|
|
159
159
|
data: JSON.stringify({
|
|
@@ -162,11 +162,10 @@ Steedos.StandardObjects = {
|
|
|
162
162
|
}),
|
|
163
163
|
contentType: 'application/json',
|
|
164
164
|
success: function (res) {
|
|
165
|
-
Steedos.openWindow(Steedos.absoluteUrl(
|
|
165
|
+
Steedos.openWindow(Steedos.absoluteUrl(`/api/workflow/instance/${instanceId}`))
|
|
166
166
|
},
|
|
167
167
|
error: function (res) {
|
|
168
|
-
|
|
169
|
-
FlowRouter.reload();
|
|
168
|
+
SteedosUI.message.error("未找到申请单,可能已被删除,请重新发起审")
|
|
170
169
|
}
|
|
171
170
|
});
|
|
172
171
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-core-objects",
|
|
3
|
-
"version": "3.0.14-beta.
|
|
3
|
+
"version": "3.0.14-beta.2",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"steedos"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@steedos/service-package-loader": "3.0.14-beta.
|
|
12
|
+
"@steedos/service-package-loader": "3.0.14-beta.2",
|
|
13
13
|
"bcryptjs": "^3.0.3",
|
|
14
14
|
"json2xls": "^0.1.2",
|
|
15
15
|
"lodash": "^4.17.21"
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"description": "steedos package",
|
|
18
18
|
"repository": {},
|
|
19
19
|
"license": "MIT",
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "840ce631d505348bbfdbd5c0b728b3661c4dd36d"
|
|
21
21
|
}
|