club-visit-detail.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view>
  3. <view class="uni-container">
  4. <uni-table ref="table" :loading="loading" border stripe type="selection" emptyText="暂无更多数据" @selection-change="selectionChange">
  5. <uni-tr>
  6. <uni-th width="150" align="center">日期</uni-th>
  7. <uni-th width="150" align="center">姓名</uni-th>
  8. <uni-th align="center">地址</uni-th>
  9. <uni-th width="204" align="center">设置</uni-th>
  10. </uni-tr>
  11. <uni-tr v-for="(item, index) in tableData" :key="index">
  12. <uni-td>{{ item.date }}</uni-td>
  13. <uni-td>
  14. <view class="name">{{ item.name }}</view>
  15. </uni-td>
  16. <uni-td align="center">{{ item.address }}</uni-td>
  17. <uni-td>
  18. <view class="uni-group">
  19. <button class="uni-button" size="mini" type="primary">修改</button>
  20. <button class="uni-button" size="mini" type="warn">删除</button>
  21. </view>
  22. </uni-td>
  23. </uni-tr>
  24. </uni-table>
  25. <view class="uni-pagination-box"><uni-pagination show-icon :page-size="pageSize" :current="pageCurrent" :total="total" @change="change" /></view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. </script>
  31. <style>
  32. </style>