parent
1e52983056
commit
7fac83da20
|
@ -52,13 +52,13 @@
|
||||||
<el-steps :space="200" :active="+step" finish-status="success">
|
<el-steps :space="200" :active="+step" finish-status="success">
|
||||||
<el-step>
|
<el-step>
|
||||||
<template slot="description">
|
<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 icon="el-icon-aim"/>
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>相关方端</span>
|
<span>相关方端</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
企业名称:{{ info.BELONG_TO_CORP_NAME }}
|
企业名称:{{ BELONG_TO_CORP_NAME }}
|
||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
|
@ -214,7 +214,8 @@ export default {
|
||||||
limitFlag: ''
|
limitFlag: ''
|
||||||
},
|
},
|
||||||
step: 0,
|
step: 0,
|
||||||
list: []
|
list: [],
|
||||||
|
BELONG_TO_CORP_NAME: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -419,6 +420,8 @@ export default {
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
this.list = data.flow.info
|
this.list = data.flow.info
|
||||||
this.step = data.flow.STEP
|
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') {
|
if (data.flow.endFlag === '1') {
|
||||||
this.title = '审批中'
|
this.title = '审批中'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue