fix : 项目立项页面细节优化
This commit is contained in:
@@ -407,7 +407,7 @@ const handleSubmit = async () => {
|
|||||||
}
|
}
|
||||||
let projectPersonIds = []
|
let projectPersonIds = []
|
||||||
for (const item of projectPersonUserList.value) {
|
for (const item of projectPersonUserList.value) {
|
||||||
projectPersonIds.push(item.id)
|
projectPersonIds.push(parseInt(item.id))
|
||||||
}
|
}
|
||||||
let params = {
|
let params = {
|
||||||
deploymentId: deploymentId.value,
|
deploymentId: deploymentId.value,
|
||||||
@@ -415,7 +415,7 @@ const handleSubmit = async () => {
|
|||||||
fileList: files,
|
fileList: files,
|
||||||
singleFile: attachment.value.singleFile,
|
singleFile: attachment.value.singleFile,
|
||||||
projectId: projectId.value,
|
projectId: projectId.value,
|
||||||
projectChargePerson: projectChargePersonUserList.value[0].id,
|
projectChargePerson: parseInt(projectChargePersonUserList.value[0].id),
|
||||||
projectPersonIds: projectPersonIds,
|
projectPersonIds: projectPersonIds,
|
||||||
preProcess: JSON.stringify(localFormData.value.preProcess)
|
preProcess: JSON.stringify(localFormData.value.preProcess)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -201,7 +201,7 @@ const handleView=(row)=>{
|
|||||||
query: {
|
query: {
|
||||||
id: row.requirementId,
|
id: row.requirementId,
|
||||||
projectId: row.projectId,
|
projectId: row.projectId,
|
||||||
// step: '40'
|
step: '10'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user