fix : 修改专项资金

This commit is contained in:
2024-06-06 22:58:50 +08:00
parent e1a7b46b35
commit 54e7b81f1e
3 changed files with 43 additions and 5 deletions

View File

@@ -510,6 +510,11 @@ const getDetailInfo = async () => {
type: res.code === 1000 ? 'success' : 'error'
})
if (res.code === 1000) {
if(res.data.formData.specialFund===null&&res.data.formData.isSpecialFund===null){
res.data.formData.isSpecialFund=false
}else if(res.data.formData.specialFund&&res.data.formData.isSpecialFund===null){
res.data.formData.isSpecialFund=true
}
formData.value = res.data.formData
loading.value = false
}