|
|
@@ -1241,6 +1241,8 @@
|
|
|
},
|
|
|
// 查看详情
|
|
|
delClicks(row) {
|
|
|
+ // 保存当前页码到本地存储
|
|
|
+ localStorage.setItem('resumeListPage', this.page);
|
|
|
this.$router.push({
|
|
|
path: '/resumeDetails',
|
|
|
query: {
|
|
|
@@ -2300,6 +2302,14 @@
|
|
|
} else {
|
|
|
this.classify = ''
|
|
|
}
|
|
|
+ // ========== 新增:恢复页码 ==========
|
|
|
+ const savePage = localStorage.getItem('resumeListPage');
|
|
|
+ if (savePage) {
|
|
|
+ this.page = Number(savePage);
|
|
|
+ // 读取后清除,避免影响下次
|
|
|
+ localStorage.removeItem('resumeListPage');
|
|
|
+ }
|
|
|
+ // ==================================
|
|
|
this.dataSelect()
|
|
|
// this.zySelect()
|
|
|
this.gzjySelect()
|