room1.vue 850 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class='jf-inner' style='width:100%;overflow:hidden'>
  3. <rotation size='width' :rotationImg='tableImg' :type='3'></rotation>
  4. </div>
  5. </template>
  6. <script>
  7. // import Select from '@/components/Select/Select.vue'
  8. import { Select } from 'meri-design'
  9. export default {
  10. props: ['tableImg', 'loading'],
  11. data() {
  12. return {}
  13. },
  14. components: { Select },
  15. methods: {}
  16. }
  17. </script>
  18. <style lang="less" scoped>
  19. .jf-inner {
  20. width: 100%;
  21. height: 700px;
  22. overflow: hidden;
  23. margin: 0 auto;
  24. margin-top: 8px;
  25. }
  26. </style>
  27. <style lang="less">
  28. .compute-item {
  29. .compute-center {
  30. display: flex;
  31. align-items: center;
  32. margin-bottom: 12px;
  33. }
  34. .foot {
  35. height: 32px;
  36. display: flex;
  37. justify-content: flex-end;
  38. margin-top: 28px;
  39. }
  40. }
  41. </style>