比如我在第一个表格里面页面选择第七页,完后切换到另外一个表格,发现另外一个表格页码也是第七页,两个表格current值明明都是不一样的,不知道为什么会同步,下面是demo连接链接描述
2 回答
弑天下
TA贡献1818条经验 获得超8个赞
constpagination_1={key:1,current:current_1,//当前页数pageSize:5,hideOnSinglePage:true,showSizeChanger:true,showQuickJumper:true,showTotal:(total,range)=>`共${total}条`,onChange:(page)=>{this.onChange(page,'current_1')},};constpagination_2={key:2,current:current_2,pageSize:20,hideOnSinglePage:true,showSizeChanger:true,showQuickJumper:true,showTotal:(total,range)=>`共${total}条`,onChange:(page)=>{this.onChange(page,'current_2')},};pagination配置没有current_1、current_2属性,你这样写相当于没有配置,所以表格就使用默认的current
添加回答
举报
0/150
提交
取消