Jelajahi Sumber

查看简历未返回之前页

袁兴隆 3 bulan lalu
induk
melakukan
4fd9c33e3d
1 mengubah file dengan 10 tambahan dan 0 penghapusan
  1. 10 0
      src/views/universalMission/carBrandList.vue

+ 10 - 0
src/views/universalMission/carBrandList.vue

@@ -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()