listPage.vue 482 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view id="equipmentInformationListPage">
  3. 2
  4. </view>
  5. </template>
  6. <script>
  7. import {
  8. demo1,
  9. } from '@/pages_equipmentUtilization/api/index.js'
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. onLoad(option) {
  16. },
  17. onShow() {
  18. },
  19. mounted() {
  20. },
  21. methods: {
  22. },
  23. }
  24. </script>
  25. <style lang="stylus" scoped>
  26. #equipmentInformationListPage {
  27. height: 100%;
  28. flex:1;
  29. display:flex;
  30. flex-direction:column;
  31. overflow-y: scroll;
  32. }
  33. </style>