fireTable.vue 657 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view>
  3. <view class="info-content padding" style="overflow:auto;width:97%">
  4. <table style="width:140%">
  5. <tr>
  6. <th>名称</th>
  7. <th>最后上传值</th>
  8. <th>最后上传时间</th>
  9. </tr>
  10. <tr v-for="(item,index) in this.bindData" :key="index">
  11. <td>{{item.point_name}}</td>
  12. <td>{{item.point_data}}</td>
  13. <td>{{item.time}}</td>
  14. </tr>
  15. </table>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. props: {
  22. bindData: {
  23. type: Array,
  24. default: ''
  25. }
  26. },
  27. data() {
  28. return {
  29. }
  30. },
  31. methods: {
  32. }
  33. }
  34. </script>
  35. <style>
  36. </style>