|
|
@ -93,6 +93,7 @@ const deliver = ref(); |
|
|
|
|
|
|
|
// 判断提交按钮的状态 |
|
|
|
const submitState = computed(() => !linkValue.value); |
|
|
|
const projectId = computed(() => store.getters['project/projectId']); |
|
|
|
|
|
|
|
// 获取选中的审核人信息 |
|
|
|
const checkers = computed(() => store.state.role.members); |
|
|
@ -140,7 +141,7 @@ function submit() { |
|
|
|
checkerList.push(item.memberId); |
|
|
|
}); |
|
|
|
const param = { |
|
|
|
projectId: store.state.project.project.id, |
|
|
|
projectId: projectId.value, |
|
|
|
deliverId: deliver.value.deliverId, |
|
|
|
fileList: [linkValue.value], |
|
|
|
checkerList, |
|
|
@ -212,7 +213,7 @@ async function confirmEditDeliverName() { |
|
|
|
} |
|
|
|
try { |
|
|
|
const param = { |
|
|
|
projectId: store.state.project.project.id, |
|
|
|
projectId: projectId.value, |
|
|
|
taskId: props.task.id, |
|
|
|
deliverName: newInputRef.value, |
|
|
|
}; |
|
|
|