fix : 修复项目实施上传费用,查看分摊功能细节

This commit is contained in:
2024-06-09 22:02:37 +08:00
parent a88ae09628
commit 83ba497d73
4 changed files with 152 additions and 17 deletions

View File

@@ -92,13 +92,19 @@ const baseForm = ref()
const schema = computed(() => {
return [
{
label: '征集名称',
prop: 'requirementName',
colProps: {
span: 12
}
},
{
label: '所属公司',
prop: 'affiliatedCompany',
colProps: {
span: 12
}
// component:
},
{
label: '征集类型',
@@ -106,7 +112,6 @@ const schema = computed(() => {
colProps: {
span: 12
}
// component:
},
{
label: '截止时间',
@@ -114,16 +119,8 @@ const schema = computed(() => {
colProps: {
span: 12
}
// component:
},
{
label: '需求名称',
prop: 'requirementName',
colProps: {
span: 12
}
// component:
},
]
})