From 09e6dc3fb7266620fafb5e341808a8eb36e080a1 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期六, 13 十二月 2025 22:51:52 +0800
Subject: [PATCH] feat:增加企业微信消息提醒

---
 ruoyi-ui/src/views/task/general/index.vue |   26 ++++++++++++--------------
 1 files changed, 12 insertions(+), 14 deletions(-)

diff --git a/ruoyi-ui/src/views/task/general/index.vue b/ruoyi-ui/src/views/task/general/index.vue
index 63da244..382cc4a 100644
--- a/ruoyi-ui/src/views/task/general/index.vue
+++ b/ruoyi-ui/src/views/task/general/index.vue
@@ -102,22 +102,20 @@
 
     <el-table v-loading="loading" :data="taskList" @selection-change="handleSelectionChange">
       <el-table-column type="selection" width="55" align="center" />
-      <el-table-column label="浠诲姟缂栧彿" align="center" prop="taskCode" min-width="180">
+      <el-table-column label="浠诲姟缂栧彿" align="center" prop="showTaskCode" min-width="120">
         <template slot-scope="scope">
           <el-button
             type="text"
             @click="handleView(scope.row)"
             v-hasPermi="['task:general:query']"
             style="font-family: 'Courier New', monospace; font-size: 13px;"
-          >{{ scope.row.taskCode }}</el-button>
+          >{{ scope.row.showTaskCode }}</el-button>
         </template>
       </el-table-column>
       <el-table-column label="浠诲姟绫诲瀷" align="center" prop="taskType" width="120">
         <template slot-scope="scope">
           <dict-tag :options="dict.type.sys_task_type" :value="scope.row.taskType"/>
-          <el-tag v-if="scope.row.taskType === 'EMERGENCY_TRANSFER'" type="danger" size="mini" style="margin-left: 5px;">
-            <i class="el-icon-warning"></i>
-          </el-tag>
+          
         </template>
       </el-table-column>
    
@@ -132,8 +130,8 @@
           <span v-else style="color: #C0C4CC;">--</span>
         </template>
       </el-table-column>
-      <el-table-column label="鍑哄彂鍦板潃" align="center" prop="departureAddress" show-overflow-tooltip />
-      <el-table-column label="鐩殑鍦板潃" align="center" prop="destinationAddress" show-overflow-tooltip />
+      
+      <!-- <el-table-column label="鐩殑鍦板潃" align="center" prop="destinationAddress" show-overflow-tooltip /> -->
       <el-table-column label="棰勮鍏噷鏁�" align="center" prop="estimatedDistance" width="120">
         <template slot-scope="scope">
           <span v-if="scope.row.estimatedDistance">{{ scope.row.estimatedDistance }} km</span>
@@ -143,7 +141,7 @@
  
      
       <el-table-column label="鍒涘缓浜�" align="center" prop="creatorName" />
-      <el-table-column label="鎵ц浜�" align="center" prop="assigneeName" />
+      
       <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="createTime" width="180">
         <template slot-scope="scope">
           <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
@@ -158,27 +156,27 @@
             @click="handleView(scope.row)"
             v-hasPermi="['task:general:query']"
           >鏌ョ湅</el-button>
-          <el-button
+          <!-- <el-button
             size="mini"
             type="text"
             icon="el-icon-edit"
             @click="handleUpdate(scope.row)"
             v-hasPermi="['task:general:edit']"
-          >淇敼</el-button>
-          <el-button
+          >淇敼</el-button> -->
+          <!-- <el-button
             size="mini"
             type="text"
             icon="el-icon-user"
             @click="handleAssign(scope.row)"
             v-hasPermi="['task:general:assign']"
-          >鍒嗛厤</el-button>
-          <el-button
+          >鍒嗛厤</el-button> -->
+          <!-- <el-button
             size="mini"
             type="text"
             icon="el-icon-refresh"
             @click="handleStatusChange(scope.row)"
             v-hasPermi="['task:general:status']"
-          >鐘舵��</el-button>
+          >鐘舵��</el-button> -->
           <el-button
             size="mini"
             type="text"

--
Gitblit v1.9.1