Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhengquan.bai
2024-12-18 10:10:46 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2685ceedfa46facbbda509a57b70ae8cc06cfa2d
2685ceed
1 parent
ee32562b
分页数据准备
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
src/components/Table/index.vue
src/components/Table/index.vue
View file @
2685cee
...
...
@@ -487,10 +487,14 @@ export default {
},
//某页
currentChange(val) {
this.$emit(
"currentChange"
, {
page: val,
start: val > 1 ? (val - 1) * this.limitSize + 1 : val,
this.$emit(
'currentChange'
, {
page
Index
: val,
pageSize: this.sizes
});
// this.$emit("currentChange", {
// page: val,
// start: val > 1 ? (val - 1) * this.limitSize + 1 : val,
// });
},
//表格发送编号
tableCurrentChange(currentRow, oldCurrentRow) {},
...
...
Please
register
or
login
to post a comment