Selaa lähdekoodia

fix style "更多"

Michael Wang 3 vuotta sitten
vanhempi
commit
c2cb934f18

+ 17 - 3
src/features/projectManagement/ProjectManagement.vue

@@ -81,7 +81,11 @@
             <a-popover placement="bottom">
               <template #content>
                 <div class="tw-flex tw-flex-col">
-                  <a-button @click="handleLogsOfProject(record.id)" type="text">
+                  <a-button
+                    @click="handleLogsOfProject(record.id)"
+                    type="text"
+                    style="color: white"
+                  >
                     错误报告
                   </a-button>
                   <a-button
@@ -91,6 +95,7 @@
                     "
                     @click="goProjectDataSource(record.id)"
                     type="text"
+                    style="color: white"
                   >
                     数据管理
                   </a-button>
@@ -98,13 +103,22 @@
                     v-if="record.status !== 'PROCESSING'"
                     @click="goProjectParams(record.id)"
                     type="text"
+                    style="color: white"
                   >
                     参数配置
                   </a-button>
-                  <a-button @click="goProjectPapers(record.id)" type="text">
+                  <a-button
+                    @click="goProjectPapers(record.id)"
+                    type="text"
+                    style="color: white"
+                  >
                     试卷列表
                   </a-button>
-                  <a-button @click="goAllAnalysis(record.id)" type="text">
+                  <a-button
+                    @click="goAllAnalysis(record.id)"
+                    type="text"
+                    style="color: white"
+                  >
                     整体分析
                   </a-button>
                 </div>

+ 6 - 1
src/features/userManagement/UserManagement.vue

@@ -72,13 +72,18 @@
             <a-popover placement="bottom">
               <template #content>
                 <div class="tw-flex tw-flex-col">
-                  <a-button @click="handleResetUsers([record.id])" type="text">
+                  <a-button
+                    @click="handleResetUsers([record.id])"
+                    type="text"
+                    style="color: white"
+                  >
                     重置密码
                   </a-button>
                   <a-button
                     v-if="store.isGreaterThanEqualRootOrgAdmin"
                     type="text"
                     @click="handleUserPrivilege(record.id)"
+                    style="color: white"
                   >
                     权限设置
                   </a-button>