Merge pull request 'fix : 项目立项页面细节优化' (#526) from dd into master

Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/526
This commit is contained in:
2024-07-11 15:00:36 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -407,7 +407,7 @@ const handleSubmit = async () => {
}
let projectPersonIds = []
for (const item of projectPersonUserList.value) {
projectPersonIds.push(item.id)
projectPersonIds.push(parseInt(item.id))
}
let params = {
deploymentId: deploymentId.value,
@@ -415,7 +415,7 @@ const handleSubmit = async () => {
fileList: files,
singleFile: attachment.value.singleFile,
projectId: projectId.value,
projectChargePerson: projectChargePersonUserList.value[0].id,
projectChargePerson: parseInt(projectChargePersonUserList.value[0].id),
projectPersonIds: projectPersonIds,
preProcess: JSON.stringify(localFormData.value.preProcess)
}

View File

@@ -201,7 +201,7 @@ const handleView=(row)=>{
query: {
id: row.requirementId,
projectId: row.projectId,
// step: '40'
step: '10'
}
})
}