taro3-table icon indicating copy to clipboard operation
taro3-table copied to clipboard

基于 Taro3 的微信小程序端多功能表格组件

Results 19 taro3-table issues
Sort by recently updated
recently updated
newest added

想要点击列表的每一行到详情页

const addData = async () => { setLoading(true); const data = await getData(); const list = dataSource.concat(data) setDataSource(list); setLoading(false); return data; }; 如何才能在当前滚动的位置,而不回到顶部啊?

这个功能蛮常见的欸,但看文档并没有相关配置,类似这个效果:

.taro3table .taro3table_table .taro3table_body>.taro3table_row>.taro3table_col text 这个不要用后代选择器啊。用

左右滑动到底后出现空白,有办法解决吗? ![image](https://user-images.githubusercontent.com/185824/125252263-bdf4ca00-e32a-11eb-91cf-0aedb30e3dbd.png)

想做下拉刷新和上拉加载更多,目前看下拉刷新有问题,是用法不对吗?只下拉了一次,table 一直派发change事件 ![image](https://user-images.githubusercontent.com/23418622/112251668-ad92e380-8c96-11eb-816d-40d4894ad237.png)

表头如何固定?

初始化定义列表头之后,动态生成重新render不能把列表头设置进去,对应数据也显示不出来 ``` ```