|
@@ -473,15 +473,15 @@ export default {
|
|
|
}).catch(() => {});
|
|
|
if (confirm !== "confirm") return;
|
|
|
|
|
|
- const paperData = this.getImportPaperData();
|
|
|
- if (!this.checkImportPaperData(paperData)) return;
|
|
|
+ const detailInfo = this.getImportPaperData();
|
|
|
+ if (!this.checkImportPaperData(detailInfo)) return;
|
|
|
|
|
|
if (this.loading) return;
|
|
|
this.loading = true;
|
|
|
|
|
|
const res = await questionImportPaperSave({
|
|
|
...this.data.importData,
|
|
|
- paperData,
|
|
|
+ detailInfo: JSON.stringify(detailInfo),
|
|
|
}).catch(() => {});
|
|
|
|
|
|
this.loading = false;
|