|
- <template>
- <view>
- <view class="table">
- <uni-table border stripe emptyText="暂无更多数据">
- <!-- 表头行 -->
- <uni-tr>
- <uni-th align="left">时间</uni-th>
- <uni-th align="left">人数</uni-th>
- </uni-tr>
- <!-- 表格数据行 -->
- <uni-tr v-for="(item,index) in list" :key="index">
- <uni-td>2020-10-20</uni-td>
- <uni-td>50</uni-td>
- </uni-tr>
- </uni-table>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- list: [{},{},{}],
- }
- },
- methods: {}
- }
- </script>
-
- <style scoped lang="scss">
- .table{
- padding: 30rpx;
- }
- </style>
|