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 otherFileList = ref([])
const singleList = ref([]) const singleList = ref([])
const formData = ref({ const formData = ref({
isWithinBudget: false, isWithinBudget: null,
isSpecialFund: false, isSpecialFund: null,
industryUniversityResearch: '1', industryUniversityResearch: null,
governmentDeclaration: '1', governmentDeclaration: null,
other: '无', other: '无',
resultForm: [] resultForm: []
}) })