fix : 修复阶段变更, 项目立项/验收部门分管领导编辑回显

This commit is contained in:
2024-08-03 19:30:12 +08:00
parent 9d0d722880
commit 25f4f33cb0
3 changed files with 25 additions and 13 deletions

View File

@@ -5,7 +5,7 @@
<el-row>
<el-col :span="8">
<el-form-item prop="requirementName" label="征集名称">
<span>{{ basicData.requirementName }}</span>
<span>{{ basicData.requirementName ||'--'}}</span>
</el-form-item>
</el-col>
<el-col :span="8">
@@ -328,8 +328,16 @@ onActivated(() => {
})
</script>
<style scoped>
<style scoped lang="scss">
:deep(.el-table--fit) {
min-height: 400px !important;
}
:deep(.el-form-item__label-wrap){
margin-left: 0!important;
}
:deep(.el-form-item__content){
.el-input{
width: 100%!important;
}
}
</style>