|
@@ -185,6 +185,15 @@ const ProcessInit = () => {
|
|
|
// 控制直接进入切换到下一步的流程
|
|
|
QvEvent.find().callbackDownNext = function() {
|
|
|
// console.log("控制直接进入切换到下一步的流程 QvEvent.find().callbackDownNext");
|
|
|
+
|
|
|
+ // 是否满足下一步的逻辑
|
|
|
+ if (QvProcessEventStore().obj.listIndex >= QvProcessEventStore().obj.list.length - 1) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ QvProcessEventStore().obj.listIndex += 1;
|
|
|
+ QvEvent.find().typeEvent(
|
|
|
+ QvProcessEventStore().obj.list[QvProcessEventStore().obj.listIndex].name
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
}
|