12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view>
- <view class="info-content padding" style="overflow:auto;width:97%">
- <table style="width:140%">
- <tr>
- <th>名称</th>
- <th>最后上传值</th>
- <th>最后上传时间</th>
- </tr>
- <tr v-for="(item,index) in this.bindData" :key="index">
- <td>{{item.point_name}}</td>
- <td>{{item.point_data}}</td>
- <td>{{item.time}}</td>
- </tr>
- </table>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- bindData: {
- type: Array,
- default: ''
- }
- },
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|