From cccca4aeb6fa86358ff7081ba77bbbf63beb26bb Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Tue, 17 Jun 2025 15:42:13 +0800
Subject: [PATCH] feat: 优化文件上传和任务管理

---
 src/views/system/userinfo.vue |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/src/views/system/userinfo.vue b/src/views/system/userinfo.vue
index 9d39e51..acef2d7 100644
--- a/src/views/system/userinfo.vue
+++ b/src/views/system/userinfo.vue
@@ -111,7 +111,9 @@
     <!-- 密钥上传 -->
     <div class="upload-file" v-else-if="checked === 2">
       <img v-if="isSuccess === 'success'" :src="uploadSuccess" alt="" />
+      <div v-if="isSuccess === 'success'">上传成功</div>
       <img v-if="isSuccess === 'error'" :src="uploadError" alt="" />
+      <div v-if="isSuccess === 'error'">上传失败</div>
       <el-upload
         action="/upload"
         accept=".lic"
@@ -419,12 +421,17 @@
   .upload-btn {
     width: 93px;
     height: 38px;
-    line-height: 38px;
-    background: #1b3e6c;
+    background: #DDEBFF;
     border-radius: 8px 8px 8px 8px;
-    border: 1px solid #ffffff;
-    color: #fff;
+    border: 1px solid #409EFF;
     text-align: center;
+    font-family: Source Han Sans CN, Source Han Sans CN;
+    font-weight: bold;
+    font-size: 14px;
+    color: #228CFA;
+    line-height: 38px;
+    text-align: center;
+    margin-top: 10px;
   }
   .password-time {
     margin-top: 50px;

--
Gitblit v1.9.3