平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
615 B

  1. <template>
  2. <view>
  3. <view class="table">
  4. <uni-table border stripe emptyText="暂无更多数据">
  5. <!-- 表头行 -->
  6. <uni-tr>
  7. <uni-th align="left">时间</uni-th>
  8. <uni-th align="left">人数</uni-th>
  9. </uni-tr>
  10. <!-- 表格数据行 -->
  11. <uni-tr v-for="(item,index) in list" :key="index">
  12. <uni-td>2020-10-20</uni-td>
  13. <uni-td>50</uni-td>
  14. </uni-tr>
  15. </uni-table>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. list: [{},{},{}],
  24. }
  25. },
  26. methods: {}
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. .table{
  31. padding: 30rpx;
  32. }
  33. </style>