eoss-mobiles 0.3.54 → 0.3.55
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 +11 -8
- package/lib/flow.js +10 -7
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +3 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
<div
|
|
400
400
|
class="item"
|
|
401
401
|
v-if="
|
|
402
|
-
currentNodeEnableItemHandleDescription &&
|
|
402
|
+
currentNodeEnableItemHandleDescription && nodeList &&
|
|
403
403
|
nodeList.length != 0 &&
|
|
404
404
|
isShowNode &&
|
|
405
405
|
isNextUser
|
|
@@ -1347,7 +1347,9 @@ export default {
|
|
|
1347
1347
|
},
|
|
1348
1348
|
// 切换下一步操作
|
|
1349
1349
|
changeNextOperate(val, isDef) {
|
|
1350
|
+
console.log(val,isDef,this.tagKey,'isDef')
|
|
1350
1351
|
if (!isDef && val.key === this.tagKey) return;
|
|
1352
|
+
console.log(val,isDef,this.tagKey,'isDef2222')
|
|
1351
1353
|
this.tagKey = val.key;
|
|
1352
1354
|
//恢复默认
|
|
1353
1355
|
this.isNextUser = false;
|