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

index.vue 607 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div class="xxx">
  3. scene
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. loading: false,
  11. summaryInfo: {
  12. available: 0,
  13. gain: 0,
  14. used: 0,
  15. },
  16. tabIndex: 0,
  17. tableData: [],
  18. pageInfo: {
  19. curpage: 1,
  20. pageSize: 10,
  21. pageSizes: [10],
  22. total: 0,
  23. },
  24. eventSource: null,
  25. };
  26. },
  27. components: {},
  28. methods: {
  29. getTableData: function () {
  30. },
  31. },
  32. mounted: function () {
  33. },
  34. beforeDestroy: function () {
  35. },
  36. };
  37. </script>
  38. <style scoped lang="less">
  39. </style>