From 5a7be6ac54b1e099eae276f550aa9cc9f3167be8 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Wed, 25 Jun 2025 11:17:38 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 src/views/job/components/TaskIntermediateContent/TaskIntermediateContent.vue |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/views/job/components/TaskIntermediateContent/TaskIntermediateContent.vue b/src/views/job/components/TaskIntermediateContent/TaskIntermediateContent.vue
index 173ae8b..f3f88f0 100644
--- a/src/views/job/components/TaskIntermediateContent/TaskIntermediateContent.vue
+++ b/src/views/job/components/TaskIntermediateContent/TaskIntermediateContent.vue
@@ -3,7 +3,7 @@
 	<div class="task-intermediate-content">
 		<SearchBox @search="searchClick" @addTask="handleAddTask"></SearchBox>
 		<div class="task-table">
-			<el-table border stripe :data="jobListData" class="custom-header">
+			<el-table border :data="jobListData" class="custom-header">
 				<el-table-column label="序号" type="index" width="60">
 					<template #default="{ $index }">
 						{{ ($index + 1 + (jobListParams.current - 1) * jobListParams.size).toString().padStart(2, '0') }}
@@ -20,11 +20,11 @@
 							:style="{
 								color:
 									scope.row.status === 1
-										? '#ffe17e'
+										? '#00CDC2'
 										: scope.row.status === 2
-										? '#ffa768'
+										? '#FF720F'
 										: scope.row.status === 3
-										? '#8effac'
+										? '#00AA2D'
 										: scope.row.status === 5
 										? '#FF4848'
 										: scope.row.status === 7
@@ -280,6 +280,9 @@
 	:deep(.custom-header th.el-table__cell) {
 		color: rgba(0, 0, 0, 0.85);
 	}
+	:deep(.el-table td.el-table__cell) {
+		color: #606266;
+	}
 	:deep(.el-pagination) {
 		display: flex;
 		justify-content: flex-end;

--
Gitblit v1.9.3