1. 使用uni-table组件的sticky属性 uni-app的uni-table组件提供了sticky属性,可以用于固定表头。以下是一个示例代码: html <template> <view> <uni-table :data="tableData" :columns="columns" sticky></uni-table> </view> </template> <script> expo...