From 02409bfbe15f22fc3b5dccadabfd860a660a49d9 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Sat, 11 Oct 2025 10:37:14 +0800
Subject: [PATCH] feat: 名称修改
---
src/views/job/components/DeviceJobDetails.vue | 38 ++++++++++++++++++++------------------
1 files changed, 20 insertions(+), 18 deletions(-)
diff --git a/src/views/job/components/DeviceJobDetails.vue b/src/views/job/components/DeviceJobDetails.vue
index d209cd9..c2ecc4d 100644
--- a/src/views/job/components/DeviceJobDetails.vue
+++ b/src/views/job/components/DeviceJobDetails.vue
@@ -34,7 +34,7 @@
<span>{{ total }}</span>
个
</p>
- <div class="rightBox">
+ <div class="rightBox" v-if="total">
<div class="downloadBtn" @click="htlsrwxq === 100 && downloadFun()">
<el-progress v-if="htlsrwxq !== 100" :percentage="htlsrwxq" :show-text="false" striped striped-flow :duration="1" />
<div class="downloadBtnText">
@@ -95,7 +95,7 @@
:initial-index="index"
fit="cover"
/>
-
+
<el-dialog
class="ztzf-dialog"
append-to-body
@@ -117,7 +117,7 @@
</div>
</el-dialog>
</div>
-
+
</template>
</div>
@@ -128,7 +128,7 @@
@close="showViewer = false"
/>
</div>
-
+
<div class="content-right" v-if="isShow">
<DeviceJobDetailsMap
:detailsData="detailsData"
@@ -151,7 +151,7 @@
<script setup>
import PanoramaPopup from '@/components/PanoramaPopup/PanoramaPopup.vue';
import { getShowImg, getSmallImg, getzsSmallImg,getzsShowImg } from '@/utils/util';
-import { getaiImagesPageAPI,cancelDownloadApi,getDownloadStatusApi,attachDownload} from '@/api/dataCenter/dataCenter';
+import { getaiImagesPageAPI,cancelDownloadApi,getDownloadStatusApi,attachDownload,aiImagesPage} from '@/api/dataCenter/dataCenter';
import { pxToRem } from '@/utils/rem'
import JobRelatedEvents from './JobRelatedEvents.vue'
import { getEventMediaListApi, getJobDetails, getJobInfoFiles,getJobsAllFiles } from '@/api/job/task'
@@ -217,17 +217,19 @@
)
const getAchievement = () => {
if (!props.jobId) return
-
- const attachmentsParams = {
- 'wayLineJobId': props.jobId,
- 'resultTypes': [0, 1, 3, 4, 5],
- 'orderByCreateTime': true,
- }
+
+ const attachmentsParams = {
+ 'wayLineJobId': props.jobId,
+ 'resultTypes': [0, 1, 2, 4, 5],
+ 'orderByCreateTime': true,
+ current: 1,
+ size: 2000,
+ }
const pageParams = {
current: 1,
size: 2000,
}
- getaiImagesPageAPI(attachmentsParams,pageParams ).then(res => {
+ aiImagesPage(attachmentsParams ).then(res => {
achievementList.value = res.data.data.records.map(i => ({
...i,
checked: false,
@@ -235,7 +237,7 @@
showUrl: i.resultType === 4 ? getzsShowImg(i.link) : getShowImg(i.link),
}))
total.value = res.data.data.total
- console.log('成果数据', res.data.data)
+ // console.log('成果数据', res.data.data)
})
}
const jumpMore = () => {
@@ -272,8 +274,8 @@
}).then(result => {
if (result.data.code !== 200) return
yuanImages.value = result.data.data.records
-
-
+
+
})
})
// flystatus.value = res.data.data.ai_type_str
@@ -300,7 +302,7 @@
}
// 下载
const downloadFun = async () => {
- const list = achievementList.value.filter(i => i.checked)
+ const list = achievementList.value.filter(i => i.checked)
console.log('list',list);
if (!list?.length) return ElMessage.warning('请选择文件')
if (list.length === 1) {
@@ -330,7 +332,7 @@
// 从地图点击图片预览
const showViewer = ref(false)
const activeIndex = ref(0)
-const previewUrls = ref([])
+const previewUrls = ref([])
const showImageeclick = (list, index, categoriestype) => {
if (categoriestype === 5) {
panoramaParamsShow.value = true
@@ -436,7 +438,7 @@
:deep(){
.el-progress-bar__outer{
- height: 26px !important;
+ height: 28px !important;
border-radius: 0 !important;
background: transparent !important;
--
Gitblit v1.9.3