Sfoglia il codice sorgente

导出改档信息

zhangjie 3 anni fa
parent
commit
c4640d1732
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. 12 0
      src/modules/grading/GradingProgress.vue

+ 12 - 0
src/modules/grading/GradingProgress.vue

@@ -39,6 +39,11 @@
           >导出一键定档信息</Button
         >
       </div>
+      <div v-if="IS_SCORE" class="part-box-head-left">
+        <Button shape="circle" icon="md-download" @click="toExportChangeLevel"
+          >导出改档信息</Button
+        >
+      </div>
     </div>
     <Row :gutter="20" type="flex">
       <Col span="12">
@@ -318,6 +323,13 @@ export default {
           `${this.GLOBAL.domain}/api/export/paper/${this.curSubject.workId}/${this.curSubject.subject}/oneClick`
         )
       );
+    },
+    toExportChangeLevel() {
+      window.open(
+        this.urlAddAuthor(
+          `${this.GLOBAL.domain}/api/export/paper/${this.curSubject.workId}/${this.curSubject.subject}/changeLevel`
+        )
+      );
     }
   }
 };