fix : 需求上报部分字段默认null

This commit is contained in:
dj
2025-07-23 00:21:28 +08:00
parent 3ddd24cc70
commit 62e98b9e3f

View File

@@ -462,10 +462,10 @@ const showSingleTable = ref(false)
const otherFileList = ref([])
const singleList = ref([])
const formData = ref({
isWithinBudget: false,
isSpecialFund: false,
industryUniversityResearch: '1',
governmentDeclaration: '1',
isWithinBudget: null,
isSpecialFund: null,
industryUniversityResearch: null,
governmentDeclaration: null,
other: '无',
resultForm: []
})