feat : 项目基本信息加上是否在预算内字段

This commit is contained in:
2024-10-24 23:01:54 +08:00
parent a8feed2d7f
commit a01cede9c0
9 changed files with 145 additions and 2 deletions

View File

@@ -354,7 +354,16 @@ const schema = computed(() => {
prop: 'isWithinBudget',
colProps: {
span: 6
}
},
component: () => (
<div>
{
baseFormData.value?.isWithinBudget!=null ? baseFormData.value?.isWithinBudget?
<span>{'预算内'}</span>
: <span>{'预算外'}</span>:'--'
}
</div>
)
},
{
label: '部门分管领导',