diff --git a/src/components/PersonnelInfo.vue b/src/components/PersonnelInfo.vue
index a2cf6923..a4687922 100644
--- a/src/components/PersonnelInfo.vue
+++ b/src/components/PersonnelInfo.vue
@@ -5,7 +5,7 @@
:class="{'red-tail': index < currentNodeIndex}">
+ :class="{'step-cus-icon-done': index < currentNodeIndex, 'step-cus-icon-now': index === currentNodeIndex}">
diff --git a/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue b/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue
index 6a2018b0..e80f3555 100644
--- a/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue
+++ b/src/views/workCenter/annualRevisionPlanActivelyReport/RevisionPlanActivelyReportFlow.vue
@@ -99,7 +99,7 @@
@@ -190,6 +190,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsRevisionPlanActivityReportNodes.standardizationStart.value) {
// 标准化工程师发起
this.currentNode = 1
@@ -291,6 +292,7 @@ export default {
},
currentNode: 1,
currentNodeName: '',
+ currentNodeId: EsRevisionPlanActivityReportNodes.standardizationStart.value, // 当前节点id
approvalInfoForm: this.$form.createForm(this), // 审批信息表单
personnelInfoData: [], // 人员信息数据
url: {
diff --git a/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue b/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue
index 573051b2..22763f2f 100644
--- a/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue
+++ b/src/views/workCenter/annualRevisionPlanStandardizationInit/RevisionPlanStandardizationInitFlow.vue
@@ -86,7 +86,7 @@
@@ -178,6 +178,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsRevisionPlanStandardizationInitNodes.standardizationStart.value) {
// 标准化工程师发起
this.currentNode = 1
@@ -289,6 +290,7 @@ export default {
},
currentNode: 1,
currentNodeName: '',
+ currentNodeId: EsRevisionPlanStandardizationInitNodes.standardizationStart.value, // 当前节点id
approvalInfoForm: this.$form.createForm(this), // 审批信息表单
personnelInfoData: [], // 人员信息数据
url: {
diff --git a/src/views/workCenter/enterpriseStandardAnnul/EnterpriseStandardAnnulFlow.vue b/src/views/workCenter/enterpriseStandardAnnul/EnterpriseStandardAnnulFlow.vue
index 526895c3..c9735033 100644
--- a/src/views/workCenter/enterpriseStandardAnnul/EnterpriseStandardAnnulFlow.vue
+++ b/src/views/workCenter/enterpriseStandardAnnul/EnterpriseStandardAnnulFlow.vue
@@ -78,7 +78,7 @@
@@ -145,6 +145,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsAnnulNodes.initiatorStart.value) {
// 发起人发起
this.currentNode = 1
@@ -198,6 +199,7 @@ export default {
disabled: false,
currentNode: 1, // 当前节点
currentNodeName: '',
+ currentNodeId: EsAnnulNodes.initiatorStart.value, // 当前节点id
model: {},
processInfoForm: this.$form.createForm(this),
labelCol: {
diff --git a/src/views/workCenter/enterpriseStandardChange/EnterpriseStandardChangeFlow.vue b/src/views/workCenter/enterpriseStandardChange/EnterpriseStandardChangeFlow.vue
index 0f5a9547..a2e9590b 100644
--- a/src/views/workCenter/enterpriseStandardChange/EnterpriseStandardChangeFlow.vue
+++ b/src/views/workCenter/enterpriseStandardChange/EnterpriseStandardChangeFlow.vue
@@ -79,7 +79,7 @@
@@ -148,6 +148,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsChangeNodes.mainDrafterStart.value) {
this.currentNode = 1
} else if (nodeId === EsChangeNodes.relevantPersonnelCheck.value) {
@@ -199,6 +200,7 @@ export default {
disabled: false,
currentNode: 1, // 当前节点
currentNodeName: '',
+ currentNodeId: EsChangeNodes.mainDrafterStart.value, // 当前节点id
model: {},
processInfoForm: this.$form.createForm(this),
labelCol: {
diff --git a/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue b/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue
index 31f16aae..b8822700 100644
--- a/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue
+++ b/src/views/workCenter/enterpriseStandardInitChange/PlanApprovalChangeFlow.vue
@@ -210,7 +210,7 @@
@@ -314,6 +314,7 @@ export default {
// 初始化流程节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsInitChangeNodes.mainDrafterStart.value) {
this.currentNode = 1
} else if (nodeId === EsInitChangeNodes.contactCheck.value) {
@@ -377,7 +378,7 @@ export default {
categoryTypeDisabled: false, // 申请类型和项目类别不可更改
currentNode: 1, // 当前节点
currentNodeName: '', // 当前节点名称
- currentNodeId: '', // 当前节点id
+ currentNodeId: EsInitChangeNodes.mainDrafterStart.value, // 当前节点id
model: [],
processInfoForm: this.$form.createForm(this),
labelCol: {
diff --git a/src/views/workCenter/enterpriseStandardRecheck/EnterpriseStandardRecheckFlow.vue b/src/views/workCenter/enterpriseStandardRecheck/EnterpriseStandardRecheckFlow.vue
index 73ee0dfe..1d443990 100644
--- a/src/views/workCenter/enterpriseStandardRecheck/EnterpriseStandardRecheckFlow.vue
+++ b/src/views/workCenter/enterpriseStandardRecheck/EnterpriseStandardRecheckFlow.vue
@@ -81,7 +81,7 @@
@@ -173,6 +173,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsRecheckNodes.standardizationSelectContact.value) {
// 标准化工程师选择联络人
this.currentNode = 1
@@ -247,6 +248,7 @@ export default {
disabled: false,
currentNode: 2, // 当前节点
currentNodeName: '',
+ currentNodeId: EsRecheckNodes.initiatorStart.value, // 当前节点id
model: {},
processInfoForm: this.$form.createForm(this),
labelCol: {
diff --git a/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue b/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue
index f3d17b65..6c72309b 100644
--- a/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue
+++ b/src/views/workCenter/enterpriseStandardRevision/EnterpriseStandardRevisionFlow.vue
@@ -108,7 +108,7 @@
@@ -222,6 +222,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsRevisionNodes.mainDrafterSend.value) {
// 主起草人起草分发
this.currentNode = 1
@@ -362,6 +363,7 @@ export default {
model: {},
currentNode: 1,
currentNodeName: '', // 当前节点名称
+ currentNodeId: EsRevisionNodes.mainDrafterSend.value, // 当前节点id
approvalInfoForm: this.$form.createForm(this), // 审批信息表单
personnelInfoData: [], // 人员信息数据
url: {
diff --git a/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue b/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue
index bfccd77a..2c7590d5 100644
--- a/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue
+++ b/src/views/workCenter/enterpriseStandardSealSave/EnterpriseStandardSealSaveFlow.vue
@@ -78,7 +78,7 @@
@@ -145,6 +145,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsSealSaveNodes.initiatorStart.value) {
// 发起人发起
this.currentNode = 1
@@ -198,6 +199,7 @@ export default {
disabled: false,
currentNode: 1, // 当前节点
currentNodeName: '',
+ currentNodeId: EsSealSaveNodes.initiatorStart.value, // 当前节点id
model: {},
processInfoForm: this.$form.createForm(this),
labelCol: {
diff --git a/src/views/workCenter/enterpriseStandardStartUse/EnterpriseStandardStartUseFlow.vue b/src/views/workCenter/enterpriseStandardStartUse/EnterpriseStandardStartUseFlow.vue
index 150edaa5..2fe195ea 100644
--- a/src/views/workCenter/enterpriseStandardStartUse/EnterpriseStandardStartUseFlow.vue
+++ b/src/views/workCenter/enterpriseStandardStartUse/EnterpriseStandardStartUseFlow.vue
@@ -78,7 +78,7 @@
@@ -145,6 +145,7 @@ export default {
// 初始化节点
const nodeId = this.$route.query.nodeId
if (nodeId) {
+ this.currentNodeId = nodeId
if (nodeId === EsStartUseNodes.initiatorStart.value) {
// 发起人发起
this.currentNode = 1
@@ -198,6 +199,7 @@ export default {
disabled: false,
currentNode: 1, // 当前节点
currentNodeName: '',
+ currentNodeId: EsStartUseNodes.initiatorStart.value, // 当前节点id
model: {},
processInfoForm: this.$form.createForm(this),
labelCol: {