fix : 调整台账显示信息

This commit is contained in:
2024-06-30 20:03:31 +08:00
parent a07bc1cc1c
commit 7daa4b676d
2 changed files with 6 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ const formDataArray = ref([
},
{
label: '项目负责人',
prop: 'projectChargePerson',
prop: 'projectChargePersonName',
colProps: {
span: 8
}
@@ -101,11 +101,11 @@ const formDataArray = ref([
])
const tableData = ref({})
const schema = computed(() => {
if (JSON.stringify(tableData.value) !== '{}') {
// if (JSON.stringify(tableData.value) !== '{}') {
return formDataArray.value
} else {
return formArray.value
}
// } else {
// return formArray.value
// }
})
const baseForm = ref()
const tableIns = ref()