提交内容

special-20250331
dshclm 4 days ago
parent 963dc9e62e
commit a84e1c3f14

@ -101,7 +101,7 @@
</div> </div>
<div class="main" th:if="${type} eq '5'"> <div class="main" th:if="${type} eq '5'">
<a href="base.html" target="_parent">首页</a>&nbsp;&gt;&nbsp; <a href="base.html" target="_parent">首页</a>&nbsp;&gt;&nbsp;
<a href="special_view.html" target="_parent"> <a href="special_list.html" target="_parent">
<span>专题活动</span></a> <span>专题活动</span></a>
</div> </div>
</div> </div>

@ -357,7 +357,7 @@
defaultSelected: [[${columnId}]], defaultSelected: [[${columnId}]],
rightList: [], rightList: [],
isMoreTitle: true, isMoreTitle: true,
itemsPerPage: 5, // 每页显示的项目数 // itemsPerPage: 5, // 每页显示的项目数
}; };
}, },
filters: { filters: {
@ -407,8 +407,9 @@
if (res.code == 0) { if (res.code == 0) {
this.rightList = res.data.map(item => ({ this.rightList = res.data.map(item => ({
...item, ...item,
isExpanded: false, // 初始化折叠状态 isExpanded: false,
currentPage: 1 // 初始化当前页码 currentPage: 1,
itemsPerPage: 5 // 初始化每页显示5条
})); }));
} }
}.bind(this) }.bind(this)
@ -426,8 +427,9 @@
if (res.code == 0) { if (res.code == 0) {
this.rightList = res.data.map(item => ({ this.rightList = res.data.map(item => ({
...item, ...item,
isExpanded: false, // 初始化折叠状态 isExpanded: false,
currentPage: 1 // 初始化当前页码 currentPage: 1,
itemsPerPage: 5 // 初始化每页显示5条
})); }));
} }
}.bind(this) }.bind(this)
@ -454,8 +456,8 @@
} }
}, },
getPaginatedData(item, index) { getPaginatedData(item, index) {
const startIndex = (this.rightList[index].currentPage - 1) * this.itemsPerPage; const startIndex = (this.rightList[index].currentPage - 1) * this.rightList[index].itemsPerPage;
const endIndex = startIndex + this.itemsPerPage; const endIndex = startIndex + this.rightList[index].itemsPerPage;
return item.sysSpecials.list.slice(startIndex, endIndex); return item.sysSpecials.list.slice(startIndex, endIndex);
}, },
getTotalPages(item) { getTotalPages(item) {
@ -467,13 +469,14 @@
} }
}, },
nextPage(index) { nextPage(index) {
if (this.rightList[index].currentPage < this.getTotalPages(this.rightList[index])) { const total = this.totalPages(index);
if (this.rightList[index].currentPage < total) {
this.rightList[index].currentPage++; this.rightList[index].currentPage++;
} }
}, },
handlePageSizeChange(index,itemsPerPage) { handlePageSizeChange(index,itemsPerPage) {
this.rightList[index].currentPage = 1; // 切换页大小后重置页码 this.rightList[index].currentPage = 1; // 切换页大小后重置页码
this.itemsPerPage = itemsPerPage; this.rightList[index].itemsPerPage = itemsPerPage; // 直接更新当前列表项的属性
}, },
paginatedData(index) { paginatedData(index) {
const item = this.rightList[index]; const item = this.rightList[index];
@ -483,7 +486,7 @@
}, },
totalPages(index) { totalPages(index) {
const item = this.rightList[index]; const item = this.rightList[index];
return Math.ceil(item.sysSpecials.list.length / this.itemsPerPage); return Math.ceil(item.sysSpecials.list.length / item.itemsPerPage);
} }
} }
}) })

Loading…
Cancel
Save