Michael Wang 3 anni fa
parent
commit
06cc547515
2 ha cambiato i file con 15 aggiunte e 2 eliminazioni
  1. 14 2
      src/features/mark/MarkHeader.vue
  2. 1 0
      src/types/global.d.ts

+ 14 - 2
src/features/mark/MarkHeader.vue

@@ -188,7 +188,14 @@
           </tr>
           <tr v-if="store.setting.statusValue !== 'TRIAL'">
             <td>问题卷</td>
-            <td><a-button @click="openProblemModal">选择问题类型</a-button></td>
+            <td>
+              <a-button
+                type="text"
+                style="color: #5d65ff; margin-right: -15px"
+                @click="openProblemModal"
+                >选择问题类型</a-button
+              >
+            </td>
           </tr>
           <tr v-if="isScanImage()">
             <td>分数/标记大小</td>
@@ -451,10 +458,15 @@ watch(
 .header-bg-color.ant-btn:hover {
   background-color: #5d6d7d !important;
 }
+
 .assistant-table {
   z-index: 5500;
   border-collapse: separate;
-  border-spacing: 0 0.5em;
+  border-spacing: 0 1em;
+  color: #435488;
+}
+.assistant-table tr td:nth-child(2) {
+  text-align: right;
 }
 .svg-red {
   filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg)

+ 1 - 0
src/types/global.d.ts

@@ -41,5 +41,6 @@ declare module "vue" {
     AForm: typeof import("ant-design-vue")["Form"];
     AFormItem: typeof import("ant-design-vue")["FormItem"];
     AInput: typeof import("ant-design-vue")["Input"];
+    APopover: typeof import("ant-design-vue")["Popover"];
   }
 }