[问题修复](dev):

- 修复相关方人员审核无法波回问题
hyx_2024-12-11_humanResource
huangyuxuan 2024-12-05 17:44:13 +08:00
parent 1e52983056
commit 7fac83da20
1 changed files with 6 additions and 3 deletions

View File

@ -52,13 +52,13 @@
<el-steps :space="200" :active="+step" finish-status="success">
<el-step>
<template slot="description">
<el-card class="box-card" style="margin-top: 10px" @click.native="backPoint('-1',info.BELONG_TO_CORP_NAME)">
<el-card class="box-card" style="margin-top: 10px" @click.native="backPoint('-1',BELONG_TO_CORP_NAME)">
<div icon="el-icon-aim"/>
<div slot="header" class="clearfix">
<span>相关方端</span>
</div>
<div>
企业名称{{ info.BELONG_TO_CORP_NAME }}
企业名称{{ BELONG_TO_CORP_NAME }}
</div>
</el-card>
</template>
@ -214,7 +214,8 @@ export default {
limitFlag: ''
},
step: 0,
list: []
list: [],
BELONG_TO_CORP_NAME: ''
}
},
methods: {
@ -419,6 +420,8 @@ export default {
).then((data) => {
this.list = data.flow.info
this.step = data.flow.STEP
this.form.BACK_NAME = data.flow.BELONG_TO_CORP_NAME
this.BELONG_TO_CORP_NAME = data.flow.BELONG_TO_CORP_NAME
if (data.flow.endFlag === '1') {
this.title = '审批中'
}