eoss-mobiles 0.3.0 → 0.3.1
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-mobile.common.js +10 -9
- package/lib/flow.js +9 -8
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +2 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1106,7 +1106,8 @@ export default {
|
|
|
1106
1106
|
} else {
|
|
1107
1107
|
}
|
|
1108
1108
|
}
|
|
1109
|
-
if (this.nodeList) {
|
|
1109
|
+
if (this.nodeList && this.nodeList.length > 0) {
|
|
1110
|
+
console.log(this.nodeList)
|
|
1110
1111
|
this.form.nextNodeId = this.nodeList[this.nextNodeDefault].nodeId;
|
|
1111
1112
|
this.form.nextNodeName = this.nodeList[this.nextNodeDefault].nodeName;
|
|
1112
1113
|
this.$toast.loading({
|