From 660021a28de9b84b4362c171fdbbf89587f0c5af Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期四, 13 二月 2025 17:30:50 +0800
Subject: [PATCH] 1. 修改部分bug 2. 新增2D路线轨迹绘制

---
 src/components/mission/MissionManage.vue |   29 ++++++++++++++++++-----------
 1 files changed, 18 insertions(+), 11 deletions(-)

diff --git a/src/components/mission/MissionManage.vue b/src/components/mission/MissionManage.vue
index 1cf433f..5695155 100644
--- a/src/components/mission/MissionManage.vue
+++ b/src/components/mission/MissionManage.vue
@@ -21,7 +21,7 @@
           :show-overflow-tooltip="true"
           border
           height="64vh"
-          row-class-name="t-row"
+          row-class-name="t-row-normal"
           cell-class-name="t-cell"
           header-row-class-name="t-header-row"
           header-cell-class-name="t-header-cell"
@@ -38,41 +38,44 @@
             label="寮�濮嬫椂闂�"
             align="center"
             :formatter="timeFormatter"
+            width="150"
           />
           <el-table-column
             prop="endTime"
             label="缁撴潫鏃堕棿"
             align="center"
             :formatter="timeFormatter"
+            width="150"
           />
-          <el-table-column label="绠$悊" width="140" align="center">
+          <el-table-column label="绠$悊" width="160" align="center">
             <template #default="{ row }">
+              <MissionEdit mode="update"></MissionEdit>
               <el-button
                 type="primary"
                 size="small"
+                icon="Delete"
                 class="el-button-custom"
                 @click="deleteMission(row)"
-                >鍒犻櫎</el-button
-              >
-              <!-- <el-button
+              ></el-button>
+              <el-button
                 :loading="row.downloadLoading"
                 type="primary"
                 size="small"
+                icon="Document"
                 class="el-button-custom"
                 @click="downloadReport(row)"
-                >鎶ュ憡</el-button
-              > -->
+              ></el-button>
             </template>
           </el-table-column>
         </el-table>
       </el-col>
       <el-col :span="4" class="flex-col">
-        <div>
-          <!-- <el-button type="primary" class="el-button-custom">
+        <!-- <div> -->
+        <!-- <el-button type="primary" class="el-button-custom">
                 鏂板缓浠诲姟
               </el-button> -->
-          <MissionCreate></MissionCreate>
-        </div>
+        <MissionEdit></MissionEdit>
+        <!-- </div> -->
         <!-- <div>
           <el-button type="primary" class="el-button-custom">
             鏁版嵁瀵煎叆
@@ -166,4 +169,8 @@
 .mission-table {
   /* height: 60vh; */
 }
+
+:deep(.t-row-normal) {
+  background-color: transparent !important;
+}
 </style>

--
Gitblit v1.9.3