index.vue 537 B

12345678910111213141516171819202122232425
  1. <!-- 门墩儿入口管理页 -->
  2. <template>
  3. <div style="background-color: var(--default-bgc); height: 100%; min-width: 1390px;">
  4. <navBar></navBar>
  5. <m-list></m-list>
  6. <Slider class="slider"></Slider>
  7. </div>
  8. </template>
  9. <script setup>
  10. import Slider from './components/slider.vue'
  11. import navBar from './navBar'
  12. import MList from './list'
  13. defineOptions({name: 'entrances-index'})
  14. </script>
  15. <style lang="scss" scoped>
  16. .slider {
  17. position: fixed;
  18. bottom: 50%;
  19. right: 24px;
  20. translate: 0 50%;
  21. z-index: 999;
  22. }
  23. </style>