|
@@ -26,7 +26,7 @@
|
|
|
|
|
|
<!-- 审批信息 -->
|
|
|
<uni-section title="审批信息" type="line"></uni-section>
|
|
|
- <uni-steps :options="flow.list.FlowNodes" :active="flow.active" direction="column"></uni-steps>
|
|
|
+ <uni-steps :options="flow.list.FlowNodes" :active="flow.current" direction="column"></uni-steps>
|
|
|
|
|
|
<!-- 清单详情 -->
|
|
|
<uni-section title="清单详情" type="line"></uni-section>
|
|
@@ -218,6 +218,7 @@
|
|
|
let item = auditList.find(item => item.list.id == version.flow_id);
|
|
|
if (!item) return;
|
|
|
// 查询当前节点
|
|
|
+ debugger
|
|
|
let current = item.list.FlowNodes.findIndex(node => node.seq == item.active);
|
|
|
item.current = current == -1 ? 0 : current;
|
|
|
// 保存当前所处节点
|