[问题修复](dev):

- 搜索失效,部门下拉框无数据问题修复
dev
huangyuxuan 2024-11-26 18:04:19 +08:00
parent 6d4d7ce75b
commit 67b2009632
1 changed files with 4 additions and 2 deletions

View File

@ -58,7 +58,7 @@
<span>相关方端</span>
</div>
<div>
企业名称{{ info.BELONG_TO_CORP_NAME }}
企业名称{{ BELONG_TO_CORP_NAME }}
</div>
</el-card>
</template>
@ -223,7 +223,8 @@ export default {
}
],
step: 0,
showStepFlag: false
showStepFlag: false,
BELONG_TO_CORP_NAME: ''
}
},
methods: {
@ -387,6 +388,7 @@ export default {
).then((data) => {
this.list = data.flow.info
this.step = data.flow.STEP
this.BELONG_TO_CORP_NAME = data.flow.BELONG_TO_CORP_NAME
if (data.flow.endFlag === '1') {
this.title = '审批中'
}