|
@@ -59,7 +59,7 @@ export default {
|
|
this.uId = sessionStorage.getItem("b80bb7740288fda1f201890375a60c8f") || "";
|
|
this.uId = sessionStorage.getItem("b80bb7740288fda1f201890375a60c8f") || "";
|
|
this.gId = sessionStorage.getItem("f7a42fe7211f98ac7a60a285ac3a9530") || "";
|
|
this.gId = sessionStorage.getItem("f7a42fe7211f98ac7a60a285ac3a9530") || "";
|
|
if (oSessionStorage.getItem("currentPage")) {
|
|
if (oSessionStorage.getItem("currentPage")) {
|
|
- this.pageNum = oSessionStorage.getItem("currentPage");
|
|
|
|
|
|
+ this.pageNum = Number(oSessionStorage.getItem("currentPage"));
|
|
}
|
|
}
|
|
if (oSessionStorage.getItem("currentTab")) {
|
|
if (oSessionStorage.getItem("currentTab")) {
|
|
this.activeName = oSessionStorage.getItem("currentTab") || 'ALL';
|
|
this.activeName = oSessionStorage.getItem("currentTab") || 'ALL';
|
|
@@ -138,6 +138,7 @@ export default {
|
|
// 切换分页
|
|
// 切换分页
|
|
handleCurrentChange(val) {
|
|
handleCurrentChange(val) {
|
|
this.pageNum = val;
|
|
this.pageNum = val;
|
|
|
|
+ this.storeInfo();
|
|
this.loadData();
|
|
this.loadData();
|
|
},
|
|
},
|
|
|
|
|