罗广辉
2025-11-03 78aa1b2bde9d8bb28004bc51dd1fb68e29f591ab
feat: 待执行显示集群调度信息
2 files modified
10 ■■■■■ changed files
src/subPackages/droneConsole/index.vue 8 ●●●●● patch | view | raw | blame | history
src/subPackages/inProgress/index.vue 2 ●●● patch | view | raw | blame | history
src/subPackages/droneConsole/index.vue
@@ -10,12 +10,10 @@
import dayjs from "dayjs";
import {useUserStore} from "@/store/index.js";
const wayLineJodInfoId = ref(null)
const queryParams = ref({})
const viewUrl = computed(() => {
  return getWebViewUrl('/DroneConsole', {
    wayLineJodInfoId: wayLineJodInfoId.value,
  })
  return getWebViewUrl('/DroneConsole', queryParams.value)
})
function onPostMessage(data) {
@@ -81,7 +79,7 @@
}
onLoad((options) => {
  wayLineJodInfoId.value = options.wayLineJodInfoId
  queryParams.value = options
})
src/subPackages/inProgress/index.vue
@@ -17,7 +17,7 @@
    });
  } else if (data.type === 'control') {
    uni.navigateTo({
      url: `/subPackages/droneConsole/index?wayLineJodInfoId=${wayLineJodInfoId.value}`
      url: `/subPackages/droneConsole/index?wayLineJodInfoId=${wayLineJodInfoId.value}&dockSn=${data.dockSn}`
    });
  }
}