valueDelivery.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <div class="valueDelivery">
  3. <div class="bg">
  4. <img
  5. :src="bgImg"
  6. alt=""
  7. >
  8. </div>
  9. <div class="hor-nowData">
  10. <div class="hor-head">
  11. <HorHead />
  12. </div>
  13. <div class="hor-nowData-content flexBetween">
  14. <div class="content-left">
  15. <div>
  16. <NowData screenType="hor" />
  17. </div>
  18. <div class="content-left-next flexBetween">
  19. <div>
  20. <AirSwitch screenType="hor" />
  21. </div>
  22. <div>
  23. <span>chart图</span>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="content-right">
  28. <div>
  29. <LastMonth screenType="hor" />
  30. </div>
  31. </div>
  32. </div>
  33. <!-- <div>
  34. <FloorSpace />
  35. </div> -->
  36. </div>
  37. </div>
  38. </template>
  39. <script>
  40. import hor_big_bg from '@/assets/horImg/hor_big_bg.png';
  41. import HorHead from './valueDelivery/HorHead.vue'
  42. import NowData from './valueDelivery/NowData.vue'
  43. import LastMonth from './valueDelivery/LastMonthData.vue'
  44. import AirSwitch from './valueDelivery/AirSwitch.vue'
  45. import FloorSpace from './valueDelivery/FloorSpace.vue'
  46. export default {
  47. components: { HorHead, NowData, AirSwitch, FloorSpace, LastMonth },
  48. data() {
  49. return {
  50. bgImg: hor_big_bg
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="less" scoped>
  56. .valueDelivery {
  57. scrollbar-width: none;
  58. .bg {
  59. position: absolute;
  60. z-index: -1;
  61. }
  62. .hor-head {
  63. // padding-top: 32px;
  64. display: flex;
  65. justify-content: center;
  66. }
  67. .hor-nowData-content {
  68. padding: 32px 20px;
  69. box-sizing: border-box;
  70. .content-left-next {
  71. padding-top: 27px;
  72. }
  73. }
  74. .flexBetween {
  75. display: flex;
  76. justify-content: space-between;
  77. }
  78. }
  79. </style>