|
@@ -143,6 +143,11 @@ export default {
|
|
this.infos.paperStat = this.statPaperStructure(
|
|
this.infos.paperStat = this.statPaperStructure(
|
|
this.infos.paperStructureInfo
|
|
this.infos.paperStructureInfo
|
|
);
|
|
);
|
|
|
|
+ this.infos.paperStructureInfo.sort((a, b) => {
|
|
|
|
+ if (a.mainNumber < b.mainNumber) return -1;
|
|
|
|
+ if (a.mainNumber > b.mainNumber) return 1;
|
|
|
|
+ return a.subNumber - b.subNumber;
|
|
|
|
+ });
|
|
} else {
|
|
} else {
|
|
this.infos = {
|
|
this.infos = {
|
|
paperStructureInfo: [],
|
|
paperStructureInfo: [],
|