| | |
| | | const orderId = String(route.params.id || '') |
| | | console.log(String(route.params.taskId || '')) |
| | | const taskId1 = taskId.value |
| | | const userId = userStore.getUserId ? Number(userStore.getUserId) : undefined |
| | | const userId = userStore.getUserId ? userStore.getUserId : undefined |
| | | const comments = approvalForm.comments.trim() |
| | | |
| | | if (!orderId || !userId) { |
| | |
| | | }) |
| | | |
| | | const orderId = String(route.params.id || '') |
| | | const userId = userStore.getUserId ? Number(userStore.getUserId) : undefined |
| | | const userId = userStore.getUserId ? userStore.getUserId : undefined |
| | | const comments = approvalForm.comments.trim() |
| | | const taskId1 = String(route.params.taskId || '') |
| | | |