eoss-ui 0.8.19 → 0.8.20
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/lib/eoss-ui.common.js +12 -14
- package/lib/flow.js +6 -8
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/main.vue +6 -6
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -3325,12 +3325,12 @@ this.$confirm('确认提交?', '提示', {
|
|
|
3325
3325
|
if (!this.isFlow) this.getFile(this.pendingId, attachedCode);
|
|
3326
3326
|
if (nextNodeList && nextNodeList.length != 0) {
|
|
3327
3327
|
this.nextNodeList = nextNodeList;
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3328
|
+
if (nextNodeList[0].nodeType === 'endEvent') {
|
|
3329
|
+
this.isNextUser = nextNodeList[0].nodeType != 'endEvent';
|
|
3330
|
+
nextNodeList[0].nodeType === 'endEvent'
|
|
3331
|
+
? (this.endFlow = true)
|
|
3332
|
+
: '';
|
|
3333
|
+
}
|
|
3334
3334
|
}
|
|
3335
3335
|
|
|
3336
3336
|
if (canRemoveSignUserList && canRemoveSignUserList.length != 0)
|