Merge pull request 'fix : 需求上报部分字段默认null' (#1096) from master into prod

Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/1096
This commit is contained in:
2025-07-22 16:23:07 +00:00

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: []
}) })