|
@@ -1,81 +1,87 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="project-wayline-wrapper height-100">
|
|
<div class="project-wayline-wrapper height-100">
|
|
|
<a-spin :spinning="loading" :delay="300" tip="downloading" size="large">
|
|
<a-spin :spinning="loading" :delay="300" tip="downloading" size="large">
|
|
|
- <div style="height: 50px; line-height: 50px; border-bottom: 1px solid #4f4f4f; font-weight: 450;">
|
|
|
|
|
- <a-row>
|
|
|
|
|
- <a-col :span="1"></a-col>
|
|
|
|
|
- <a-col :span="15">Flight Route Library</a-col>
|
|
|
|
|
- <a-col :span="8" v-if="importVisible" class="flex-row flex-justify-end flex-align-center">
|
|
|
|
|
- <a-upload
|
|
|
|
|
- name="file"
|
|
|
|
|
- :multiple="false"
|
|
|
|
|
- :before-upload="beforeUpload"
|
|
|
|
|
- :show-upload-list="false"
|
|
|
|
|
- :customRequest="uploadFile"
|
|
|
|
|
- >
|
|
|
|
|
- <a-button type="text" style="color: white;">
|
|
|
|
|
- <SelectOutlined />
|
|
|
|
|
- </a-button>
|
|
|
|
|
- </a-upload>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div :style="{ height : height + 'px'}" class="scrollbar">
|
|
|
|
|
- <div id="data" class="height-100 uranus-scrollbar" v-if="waylinesData.data.length !== 0" @scroll="onScroll">
|
|
|
|
|
- <div v-for="wayline in waylinesData.data" :key="wayline.id">
|
|
|
|
|
- <div class="wayline-panel" style="padding-top: 5px;" @click="selectRoute(wayline)">
|
|
|
|
|
- <div class="title">
|
|
|
|
|
- <a-tooltip :title="wayline.name">
|
|
|
|
|
- <div class="pr10" style="width: 120px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;">{{ wayline.name }}</div>
|
|
|
|
|
- </a-tooltip>
|
|
|
|
|
- <div class="ml10"><UserOutlined /></div>
|
|
|
|
|
- <a-tooltip :title="wayline.user_name">
|
|
|
|
|
- <div class="ml5 pr10" style="width: 80px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;">{{ wayline.user_name }}</div>
|
|
|
|
|
- </a-tooltip>
|
|
|
|
|
- <div class="fz20">
|
|
|
|
|
- <a-dropdown>
|
|
|
|
|
- <a style="color: white;">
|
|
|
|
|
- <EllipsisOutlined />
|
|
|
|
|
- </a>
|
|
|
|
|
- <template #overlay>
|
|
|
|
|
- <a-menu theme="dark" class="more" style="background: #3c3c3c;">
|
|
|
|
|
- <a-menu-item @click="downloadWayline(wayline.id, wayline.name)">
|
|
|
|
|
- <span>Download</span>
|
|
|
|
|
- </a-menu-item>
|
|
|
|
|
- <a-menu-item @click="showWaylineTip(wayline.id)">
|
|
|
|
|
- <span>Delete</span>
|
|
|
|
|
- </a-menu-item>
|
|
|
|
|
- </a-menu>
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-dropdown>
|
|
|
|
|
|
|
+ <div style="height: 50px; line-height: 50px; border-bottom: 1px solid #4f4f4f; font-weight: 450;">
|
|
|
|
|
+ <a-row>
|
|
|
|
|
+ <a-col :span="1"></a-col>
|
|
|
|
|
+ <a-col :span="15">Flight Route Library</a-col>
|
|
|
|
|
+ <a-col :span="8" v-if="importVisible" class="flex-row flex-justify-end flex-align-center">
|
|
|
|
|
+ <a-upload name="file" :multiple="false" :before-upload="beforeUpload" :show-upload-list="false"
|
|
|
|
|
+ :customRequest="uploadFile">
|
|
|
|
|
+ <a-button type="text" style="color: white;">
|
|
|
|
|
+ <SelectOutlined />
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ </a-upload>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div :style="{ height: height + 'px' }" class="scrollbar">
|
|
|
|
|
+ <div id="data" class="height-100 uranus-scrollbar" v-if="waylinesData.data.length !== 0" @scroll="onScroll">
|
|
|
|
|
+ <div v-for="wayline in waylinesData.data" :key="wayline.id">
|
|
|
|
|
+ <div class="wayline-panel" style="padding-top: 5px;" @click="selectRoute(wayline)">
|
|
|
|
|
+ <div class="title">
|
|
|
|
|
+ <a-tooltip :title="wayline.name">
|
|
|
|
|
+ <div class="pr10"
|
|
|
|
|
+ style="width: 120px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;">{{
|
|
|
|
|
+ wayline.name }}</div>
|
|
|
|
|
+ </a-tooltip>
|
|
|
|
|
+ <div class="ml10">
|
|
|
|
|
+ <UserOutlined />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <a-tooltip :title="wayline.user_name">
|
|
|
|
|
+ <div class="ml5 pr10"
|
|
|
|
|
+ style="width: 80px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;">{{
|
|
|
|
|
+ wayline.user_name }}</div>
|
|
|
|
|
+ </a-tooltip>
|
|
|
|
|
+ <div class="fz20">
|
|
|
|
|
+ <a-dropdown>
|
|
|
|
|
+ <a style="color: white;">
|
|
|
|
|
+ <EllipsisOutlined />
|
|
|
|
|
+ </a>
|
|
|
|
|
+ <template #overlay>
|
|
|
|
|
+ <a-menu theme="dark" class="more" style="background: #3c3c3c;">
|
|
|
|
|
+ <a-menu-item @click="downloadWayline(wayline.id, wayline.name)">
|
|
|
|
|
+ <span>Download</span>
|
|
|
|
|
+ </a-menu-item>
|
|
|
|
|
+ <a-menu-item @click="showWaylineTip(wayline.id)">
|
|
|
|
|
+ <span>Delete</span>
|
|
|
|
|
+ </a-menu-item>
|
|
|
|
|
+ </a-menu>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-dropdown>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="ml10 mt5" style="color: hsla(0,0%,100%,0.65);">
|
|
|
|
|
+ <span>
|
|
|
|
|
+ <RocketOutlined />
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="ml5">{{ DEVICE_NAME[wayline.drone_model_key] }}</span>
|
|
|
|
|
+ <span class="ml10">
|
|
|
|
|
+ <CameraFilled style="border-top: 1px solid; padding-top: -3px;" />
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="ml5" v-for="payload in wayline.payload_model_keys" :key="payload.id">
|
|
|
|
|
+ {{ DEVICE_NAME[payload] }}
|
|
|
|
|
+ </span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="mt5 ml10" style="color: hsla(0,0%,100%,0.35);">
|
|
|
|
|
+ <span class="mr10">Update at {{ new Date(wayline.update_time).toLocaleString() }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
- </div>
|
|
|
|
|
- <div class="ml10 mt5" style="color: hsla(0,0%,100%,0.65);">
|
|
|
|
|
- <span><RocketOutlined /></span>
|
|
|
|
|
- <span class="ml5">{{ DEVICE_NAME[wayline.drone_model_key] }}</span>
|
|
|
|
|
- <span class="ml10"><CameraFilled style="border-top: 1px solid; padding-top: -3px;" /></span>
|
|
|
|
|
- <span class="ml5" v-for="payload in wayline.payload_model_keys" :key="payload.id">
|
|
|
|
|
- {{ DEVICE_NAME[payload] }}
|
|
|
|
|
- </span>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="mt5 ml10" style="color: hsla(0,0%,100%,0.35);">
|
|
|
|
|
- <span class="mr10">Update at {{ new Date(wayline.update_time).toLocaleString() }}</span>
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- </div>
|
|
|
|
|
- <div v-else>
|
|
|
|
|
- <a-empty :image-style="{ height: '60px', marginTop: '60px' }" />
|
|
|
|
|
- </div>
|
|
|
|
|
- <a-modal v-model:visible="deleteTip" width="450px" :closable="false" :maskClosable="false" centered :okButtonProps="{ danger: true }" @ok="deleteWayline">
|
|
|
|
|
|
|
+ <div v-else>
|
|
|
|
|
+ <a-empty :image-style="{ height: '60px', marginTop: '60px' }" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <a-modal v-model:visible="deleteTip" width="450px" :closable="false" :maskClosable="false" centered
|
|
|
|
|
+ :okButtonProps="{ danger: true }" @ok="deleteWayline">
|
|
|
<p class="pt10 pl20" style="height: 50px;">Wayline file is unrecoverable once deleted. Continue?</p>
|
|
<p class="pt10 pl20" style="height: 50px;">Wayline file is unrecoverable once deleted. Continue?</p>
|
|
|
<template #title>
|
|
<template #title>
|
|
|
- <div class="flex-row flex-justify-center">
|
|
|
|
|
- <span>Delete</span>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="flex-row flex-justify-center">
|
|
|
|
|
+ <span>Delete</span>
|
|
|
|
|
+ </div>
|
|
|
</template>
|
|
</template>
|
|
|
- </a-modal>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ </a-modal>
|
|
|
|
|
+ </div>
|
|
|
</a-spin>
|
|
</a-spin>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
@@ -91,13 +97,12 @@ import { useMyStore } from '/@/store'
|
|
|
import { WaylineFile } from '/@/types/wayline'
|
|
import { WaylineFile } from '/@/types/wayline'
|
|
|
import { downloadFile } from '/@/utils/common'
|
|
import { downloadFile } from '/@/utils/common'
|
|
|
import { IPage } from '/@/api/http/type'
|
|
import { IPage } from '/@/api/http/type'
|
|
|
-import { CURRENT_CONFIG } from '/@/api/http/config'
|
|
|
|
|
import { load } from '@amap/amap-jsapi-loader'
|
|
import { load } from '@amap/amap-jsapi-loader'
|
|
|
import { getRoot } from '/@/root'
|
|
import { getRoot } from '/@/root'
|
|
|
|
|
|
|
|
const loading = ref(false)
|
|
const loading = ref(false)
|
|
|
const store = useMyStore()
|
|
const store = useMyStore()
|
|
|
-const pagination :IPage = {
|
|
|
|
|
|
|
+const pagination: IPage = {
|
|
|
page: 1,
|
|
page: 1,
|
|
|
total: -1,
|
|
total: -1,
|
|
|
page_size: 10
|
|
page_size: 10
|
|
@@ -131,7 +136,7 @@ onMounted(() => {
|
|
|
}, 1000)
|
|
}, 1000)
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
-function getWaylines () {
|
|
|
|
|
|
|
+function getWaylines() {
|
|
|
if (!canRefresh.value) {
|
|
if (!canRefresh.value) {
|
|
|
return
|
|
return
|
|
|
}
|
|
}
|
|
@@ -152,12 +157,12 @@ function getWaylines () {
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-function showWaylineTip (waylineId: string) {
|
|
|
|
|
|
|
+function showWaylineTip(waylineId: string) {
|
|
|
deleteWaylineId.value = waylineId
|
|
deleteWaylineId.value = waylineId
|
|
|
deleteTip.value = true
|
|
deleteTip.value = true
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-function deleteWayline () {
|
|
|
|
|
|
|
+function deleteWayline() {
|
|
|
deleteWaylineFile(workspaceId, deleteWaylineId.value).then(res => {
|
|
deleteWaylineFile(workspaceId, deleteWaylineId.value).then(res => {
|
|
|
if (res.code === 0) {
|
|
if (res.code === 0) {
|
|
|
message.success('Wayline file deleted')
|
|
message.success('Wayline file deleted')
|
|
@@ -171,7 +176,7 @@ function deleteWayline () {
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-function downloadWayline (waylineId: string, fileName: string) {
|
|
|
|
|
|
|
+function downloadWayline(waylineId: string, fileName: string) {
|
|
|
loading.value = true
|
|
loading.value = true
|
|
|
downloadWaylineFile(workspaceId, waylineId).then(res => {
|
|
downloadWaylineFile(workspaceId, waylineId).then(res => {
|
|
|
if (!res) {
|
|
if (!res) {
|
|
@@ -184,11 +189,11 @@ function downloadWayline (waylineId: string, fileName: string) {
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-function selectRoute (wayline: WaylineFile) {
|
|
|
|
|
|
|
+function selectRoute(wayline: WaylineFile) {
|
|
|
store.commit('SET_SELECT_WAYLINE_INFO', wayline)
|
|
store.commit('SET_SELECT_WAYLINE_INFO', wayline)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-function onScroll (e: any) {
|
|
|
|
|
|
|
+function onScroll(e: any) {
|
|
|
const element = e.srcElement
|
|
const element = e.srcElement
|
|
|
if (element.scrollTop + element.clientHeight >= element.scrollHeight - 5 && Math.ceil(pagination.total / pagination.page_size) > pagination.page && canRefresh.value) {
|
|
if (element.scrollTop + element.clientHeight >= element.scrollHeight - 5 && Math.ceil(pagination.total / pagination.page_size) > pagination.page && canRefresh.value) {
|
|
|
pagination.page++
|
|
pagination.page++
|
|
@@ -210,7 +215,7 @@ interface FileInfo {
|
|
|
}
|
|
}
|
|
|
const fileList = ref<FileItem[]>([])
|
|
const fileList = ref<FileItem[]>([])
|
|
|
|
|
|
|
|
-function beforeUpload (file: FileItem) {
|
|
|
|
|
|
|
+function beforeUpload(file: FileItem) {
|
|
|
fileList.value = [file]
|
|
fileList.value = [file]
|
|
|
loading.value = true
|
|
loading.value = true
|
|
|
return true
|
|
return true
|
|
@@ -248,6 +253,7 @@ const uploadFile = async () => {
|
|
|
font-size: 13px;
|
|
font-size: 13px;
|
|
|
border-radius: 2px;
|
|
border-radius: 2px;
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
|
|
+
|
|
|
.title {
|
|
.title {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
@@ -257,9 +263,10 @@ const uploadFile = async () => {
|
|
|
margin: 0px 10px 0 10px;
|
|
margin: 0px 10px 0 10px;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
.uranus-scrollbar {
|
|
.uranus-scrollbar {
|
|
|
overflow: auto;
|
|
overflow: auto;
|
|
|
scrollbar-width: thin;
|
|
scrollbar-width: thin;
|
|
|
scrollbar-color: #c5c8cc transparent;
|
|
scrollbar-color: #c5c8cc transparent;
|
|
|
}
|
|
}
|
|
|
-</style>
|
|
|
|
|
|
|
+</style>
|