labPage.vue 508 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!-- 数据看板-首页 -->
  2. <template>
  3. <view class="dataBoard">
  4. </view>
  5. </template>
  6. <script>
  7. import {
  8. config
  9. } from '@/api/request/config.js'
  10. import {
  11. } from '@/pages_basics/api/index.js'
  12. export default {
  13. name: "dataBoard",
  14. components: {
  15. },
  16. data() {
  17. return {
  18. }
  19. },
  20. created() {
  21. },
  22. beforeMount() {
  23. },
  24. mounted() {},
  25. methods: {
  26. },
  27. }
  28. </script>
  29. <style lang="stylus" scoped>
  30. .dataBoard {
  31. height: 100%;
  32. width: 100%;
  33. background: #363744;
  34. }
  35. </style>