|
@@ -71,6 +71,7 @@ export default {
|
|
paperTempList: [],
|
|
paperTempList: [],
|
|
curPaperTemp: {},
|
|
curPaperTemp: {},
|
|
downloading: false,
|
|
downloading: false,
|
|
|
|
+ fieldData: {},
|
|
};
|
|
};
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
@@ -92,6 +93,10 @@ export default {
|
|
async getPaperJson() {
|
|
async getPaperJson() {
|
|
const res = await paperDetailInfoApi(this.paperId);
|
|
const res = await paperDetailInfoApi(this.paperId);
|
|
this.paperJson = res.data;
|
|
this.paperJson = res.data;
|
|
|
|
+ this.fieldData = {
|
|
|
|
+ paperName: res.data.name,
|
|
|
|
+ courseName: `${res.data.course.name}(${res.data.course.code})`,
|
|
|
|
+ };
|
|
},
|
|
},
|
|
async getPaperTempList() {
|
|
async getPaperTempList() {
|
|
const res = await paperTemplateListApi("PAPER_EXPORT");
|
|
const res = await paperTemplateListApi("PAPER_EXPORT");
|