|
@@ -244,12 +244,14 @@ $(document).ready(function() {
|
|
|
prePage() {
|
|
|
if (this.curPage === 1) return;
|
|
|
this.curPage = this.curPage - 1;
|
|
|
+ this.refreshPages();
|
|
|
this.refreshFilesTable();
|
|
|
}
|
|
|
async nextPage() {
|
|
|
if (this.curPage === this.curTotalPage) return;
|
|
|
await filingObj.loadFiles(this.curFiling, this.curPage + 1);
|
|
|
this.curPage = this.curPage + 1;
|
|
|
+ this.refreshPages();
|
|
|
this.refreshFilesTable();
|
|
|
}
|
|
|
getCurFilingFullPath(){
|