From 08f95b2f159b56fa3bd4f4b348855989de8aa456 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期四, 18 十二月 2025 21:48:18 +0800
Subject: [PATCH] feat: vehicle

---
 app/pages/index.vue |   22 +++++++++++++++++-----
 1 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/app/pages/index.vue b/app/pages/index.vue
index f1e687a..b6dbb88 100644
--- a/app/pages/index.vue
+++ b/app/pages/index.vue
@@ -95,9 +95,10 @@
           <view class="task-main" @click="viewTaskDetail(task)">
             <!-- 浠诲姟澶撮儴锛氭爣棰樺拰鐘舵�佹爣绛� -->
             <view class="task-header">
-              <view class="task-title"
-                >{{ getTaskTypeText(task.type) }} - {{ task.vehicle }}</view
-              >
+              <view class="task-title">
+                {{ getTaskTypeText(task.type) }} - {{ task.vehicle }}
+                <text v-if="task.isHeadPush === '1'" class="head-push-tag">鎬�</text>
+              </view>
               <view
                 class="task-status"
                 :class="
@@ -755,18 +756,29 @@
     height: 0 !important;
     background: transparent;
   }
-
+  
   // Firefox婊氬姩鏉¢殣钘�
   * {
     scrollbar-width: none; /* Firefox */
   }
-
+  
   // IE/Edge婊氬姩鏉¢殣钘�
   * {
     -ms-overflow-style: none; /* IE 10+ */
   }
 }
 
+// 鎬婚儴鎺ㄩ�佹爣璁版牱寮�
+.head-push-tag {
+  color: #ff0000;
+  font-size: 24rpx;
+  font-weight: bold;
+  margin-left: 10rpx;
+  padding: 2rpx 8rpx;
+  border: 1rpx solid #ff0000;
+  border-radius: 4rpx;
+}
+
 // 鐢ㄦ埛淇℃伅鍖哄煙
 .user-info-section {
   background-color: white;

--
Gitblit v1.9.1