From ce37640c757ccb9fb0ea02d6c538c9a844265557 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Sat, 06 Dec 2025 17:27:32 +0800
Subject: [PATCH] Merge branch 'feature/v8.0/8.0.4' into prod

---
 src/views/tickets/orderLog.vue |   64 ++++++++++++++++++++-----------
 1 files changed, 41 insertions(+), 23 deletions(-)

diff --git a/src/views/tickets/orderLog.vue b/src/views/tickets/orderLog.vue
index eaae7b1..595c86c 100644
--- a/src/views/tickets/orderLog.vue
+++ b/src/views/tickets/orderLog.vue
@@ -9,7 +9,7 @@
         <el-button type="success" plain icon="el-icon-download" @click="exportData">导出
         </el-button>
         <div class="task-table">
-          <el-table border :data="orderListTable" class="custom-header">
+          <el-table border :data="orderListTable" class="custom-header" @cell-click="handleCellClick">
             <el-table-column label="序号" type="index" width="60">
               <template #default="{ $index }">
                 {{ ($index + 1 + (orderListParams.current - 1) * orderListParams.size).toString().padStart(2,
@@ -91,19 +91,14 @@
 import AddEditDetails from './component/AddEditDetails.vue'
 import NProgress from 'nprogress'
 import { useStore } from 'vuex'
+import { useRoute } from 'vue-router'
 import { downloadXls } from '@/utils/util'
 import {
   getList,
-  saveUpdateOrderLog,
   orderLogDetails,
-  orderLogRecall,
-  orderLogReject,
-  orderLogPass,
   orderLogExport,
   jobStatusNum,
-  userPublish,
   deleteOrderLog,
-  getWaylineMaxTerrainHeight
 } from '@/api/tickets/orderLog'
 import { newGetWorkspacesPage } from '@/api/resource/wayline'
 import { getDictionaryByCode } from '@/api/system/dictbiz'
@@ -116,11 +111,10 @@
 import { aiImagesPage } from '@/api/dataCenter/dataCenter';
 
 const store = useStore()
+const route = useRoute()
 
 const userInfo = computed(() => store.state.user.userInfo)
 const permission = computed(() => store.state.user.permission);
-
-console.log(userInfo,permission, '8888')
 
 const isShowAddEditDetails = ref(false)
 
@@ -150,7 +144,6 @@
   activeTab.value = tabsList.value[0].name
   // tab值传
   orderListParams.status = tabsList.value[0].value
-  console.log('8878797', tabsList.value)
   // tabsList.value
   //   .map(tab => {
   //     if (tab.name === 'all') {
@@ -173,17 +166,17 @@
 // tab切换
 function handleTabChange (tab) {
   activeTab.value = tab.paneName
-  orderListParams.status = ''
-  if (tab.paneName === 'WAIT_AUDIT') {
-    orderListParams.status = '1'
-  } else if (tab.paneName === 'REJECTED') {
-    orderListParams.status = '2'
-  } else if (tab.paneName === 'PASS') {
-    orderListParams.status = '3'
-  } else if (tab.paneName === 'DRAFT') {
-    orderListParams.status = '0'
-  }
-  refreshGetOrderList()
+  // orderListParams.status = ''
+  // if (tab.paneName === 'WAIT_AUDIT') {
+  //   orderListParams.status = '1'
+  // } else if (tab.paneName === 'REJECTED') {
+  //   orderListParams.status = '2'
+  // } else if (tab.paneName === 'PASS') {
+  //   orderListParams.status = '3'
+  // } else if (tab.paneName === 'DRAFT') {
+  //   orderListParams.status = '0'
+  // }
+  // refreshGetOrderList()
 }
 
 // 更新统计数
@@ -260,7 +253,6 @@
 const searchClick = params => {
   orderListParams.current = 1
   orderListParams.size = 10
-  console.log('333', params)
   orderListParams.searchParams = params
   getTableList()
 }
@@ -335,7 +327,6 @@
       ...cloneDeep(orderListParams.searchParams)
     }
     const res = await orderLogExport(apiParams)
-    console.log(res, '导出')
     downloadXls(res.data, `智飞工单${dayjs().format('YYYY-MM-DD')}.xlsx`)
     ElMessage.success('导出成功')
 
@@ -398,6 +389,30 @@
   }
 }
 
+function handleCellClick (row, column) {
+  if (column.no === 1) {
+    navigator.clipboard.writeText(row.job_info_num).then(() => {
+      ElMessage.success('复制工单编号成功')
+    })
+  } else if (column.no === 2) {
+    navigator.clipboard.writeText(row.name).then(() => {
+      ElMessage.success('复制工单名称成功')
+    })
+  } else if (column.no === 4) {
+    navigator.clipboard.writeText(row.dept_name).then(() => {
+      ElMessage.success('复制所属单位成功')
+    })
+  } else if (column.no === 8) {
+    navigator.clipboard.writeText(row.wayline_name).then(() => {
+      ElMessage.success('复制关联航线成功')
+    })
+  } else if (column.no === 9) {
+    navigator.clipboard.writeText(row.ai_type_str).then(() => {
+      ElMessage.success('复制关联算法成功')
+    })
+  }
+}
+
 // 删除
 async function deleteOrder(id) {
   try {
@@ -424,6 +439,9 @@
   filteredTabs()
   getTableList()
   updateGlobalCounts()
+  if (route.query.id) {
+    route.query.status === '1' ? handleCheckDetail({ id:  route.query.id}, '工单审核') : handleCheckDetail({ id:  route.query.id}, '工单详情')
+  }
 })
 </script>
 

--
Gitblit v1.9.3