无人机管理后台前端(已迁走)
rjg
2025-05-29 79050720cc0e728d8948ee4fe7e4d8ea857e9032
src/views/job/components/TaskIntermediateContent/TaskIntermediateContent.vue
@@ -170,14 +170,11 @@
   if (row.status === 2 || row.status === 1) {
      // isShowCurrentTaskDetails.value = true
      // 跳转大屏当前任务详情
      const adminUrl = `${import.meta.env.VITE_APP_AREA_NAME}/command-center-dashboard/`
      const targetPath = `/taskManage?id=${rowData.value.id}&batchNo=${rowData.value.batch_no}`
      window.open(`${adminUrl}?redirect=${encodeURIComponent(targetPath)}`, '_blank')
      const adminUrl = `${import.meta.env.VITE_APP_AREA_NAME}/command-center-dashboard/#/taskManage`
      const targetPath = `id=${encodeURIComponent(rowData.value.id)}&batchNo=${encodeURIComponent(rowData.value.batch_no)}`
      window.open(`${adminUrl}?${targetPath}`, '_blank')
   } else {
      // isShowDeviceJobDetails.value = true
      const adminUrl = `${import.meta.env.VITE_APP_AREA_NAME}/command-center-dashboard/`
      const targetPath = `/taskManage?id=${rowData.value.id}&batchNo=${rowData.value.batch_no}`
      window.open(`${adminUrl}?redirect=${encodeURIComponent(targetPath)}`, '_blank')
      isShowDeviceJobDetails.value = true
   }
}