Tencent / tdesign-vue-next

A Vue3.x UI components lib for TDesign.
https://tdesign.tencent.com/vue-next
MIT License
1.46k stars 478 forks source link

[t-table] 分页问题 #4736

Closed JinPing5306 closed 4 days ago

JinPing5306 commented 1 week ago

tdesign-vue-next 版本

1.10.3

重现链接

No response

重现步骤

表格切换分页,数据都错乱了,赶紧改吧,第一次见table出现这种低级问题.

期望结果

No response

实际结果

No response

框架版本

No response

浏览器版本

No response

系统版本

No response

Node版本

No response

补充说明

No response

github-actions[bot] commented 1 week ago

👋 @JinPing5306,感谢给 TDesign 提出了 issue。 请根据 issue 模版确保背景信息的完善,我们将调查并尽快回复你。

uyarn commented 1 week ago

麻烦提供下复现代码

github-actions[bot] commented 1 week ago

你好 @JinPing5306, 我们需要你提供一个在线的重现实例以便于我们帮你排查问题。你可以通过点击 此处 创建一个 codesandbox 或者提供一个最小化的 GitHub 仓库。请确保选择准确的版本。

JinPing5306 commented 4 days ago

<t-table bordered :pagination :loading="tableLoading" row-key="jqdxbs" :data="tableData" :columns="tableColumns" @change="tableChange" :disableDataPage="true"

  const pagination = reactive({

defaultCurrent: 1, defaultPageSize: 20, total: 0, });

function tableChange(e) { pagination.defaultCurrent = e.pagination.current; pagination.defaultPageSize = e.pagination.pageSize; seachListFucn(); }