New file |
| | |
| | | <template> |
| | | <div class="public-table"> |
| | | <table border="1"> |
| | | <tr> |
| | | <th>111</th> |
| | | <th>111</th> |
| | | <th>111</th> |
| | | <th>111</th> |
| | | <th>111</th> |
| | | <th>111</th> |
| | | </tr> |
| | | <tr> |
| | | <td>4444444444</td> |
| | | <td>4444444444</td> |
| | | <td>4444444444</td> |
| | | <td>4444444444</td> |
| | | <td>4444444444</td> |
| | | <td>4444444444</td> |
| | | </tr> |
| | | </table> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | name: 'PublicTable', |
| | | data () { |
| | | return { |
| | | tableData: [{ |
| | | date: '2016-05-02', |
| | | name: '王小虎', |
| | | address: '上海市普陀区金沙江路 1518 弄' |
| | | }, { |
| | | date: '2016-05-04', |
| | | name: '王小虎', |
| | | address: '上海市普陀区金沙江路 1517 弄' |
| | | }, { |
| | | date: '2016-05-01', |
| | | name: '王小虎', |
| | | address: '上海市普陀区金沙江路 1519 弄' |
| | | }, { |
| | | date: '2016-05-03', |
| | | name: '王小虎', |
| | | address: '上海市普陀区金沙江路 1516 弄' |
| | | }] |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | | |
| | | <style lang="less" scoped> |
| | | |
| | | </style> |