|
@@ -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`
|
|
|
+ )
|
|
|
+ );
|
|
|
}
|
|
|
}
|
|
|
};
|