소스 검색

typecheck fix

Michael Wang 3 년 전
부모
커밋
cca8f6ef7f
4개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 1 1
      src/components/QmButton.vue
  2. 2 2
      src/features/mark/MarkBoardKeyBoard.vue
  3. 2 2
      src/features/mark/MarkBoardMouse.vue
  4. 2 2
      src/features/mark/MarkBoardTrack.vue

+ 1 - 1
src/components/QmButton.vue

@@ -1,5 +1,5 @@
 <template>
-  <a-button v-bind="newAttrs" :loading="inInterval" @click="insideClick">
+  <a-button v-bind="newAttrs" :loading="inInterval.value" @click="insideClick">
     <template v-for="(_, slot) of $slots" v-slot:[slot]="scope">
       <slot :name="slot" v-bind="scope" />
     </template>

+ 2 - 2
src/features/mark/MarkBoardKeyBoard.vue

@@ -45,12 +45,12 @@
           cancel-text="取消"
           @confirm="$emit('allZeroSubmit')"
         >
-          <a-button type="primary" shape="round" size="medium">
+          <a-button type="primary" shape="round" size="middle">
             全零分
           </a-button>
         </a-popconfirm>
 
-        <qm-button type="primary" shape="round" size="medium" @click="submit">
+        <qm-button type="primary" shape="round" size="middle" @click="submit">
           提交
         </qm-button>
       </div>

+ 2 - 2
src/features/mark/MarkBoardMouse.vue

@@ -45,12 +45,12 @@
           cancel-text="取消"
           @confirm="$emit('allZeroSubmit')"
         >
-          <a-button type="primary" shape="round" size="medium">
+          <a-button type="primary" shape="round" size="middle">
             全零分
           </a-button>
         </a-popconfirm>
 
-        <qm-button type="primary" shape="round" size="medium" @click="submit">
+        <qm-button type="primary" shape="round" size="middle" @click="submit">
           提交
         </qm-button>
       </div>

+ 2 - 2
src/features/mark/MarkBoardTrack.vue

@@ -30,12 +30,12 @@
           cancel-text="取消"
           @confirm="$emit('allZeroSubmit')"
         >
-          <a-button type="primary" shape="round" size="medium">
+          <a-button type="primary" shape="round" size="middle">
             全零分
           </a-button>
         </a-popconfirm>
 
-        <qm-button type="primary" shape="round" size="medium" @click="submit">
+        <qm-button type="primary" shape="round" size="middle" @click="submit">
           提交
         </qm-button>
       </div>