index.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <div class="safe">
  3. <div class="bottomCard">
  4. <div class="cardLine">
  5. <div class="lineItem card">
  6. <Safecom
  7. title="风机报警"
  8. deviceType="windturbine"
  9. alarmType="windturbine"
  10. />
  11. </div>
  12. <div class="lineItem card">
  13. <Safecom
  14. title="风机预警"
  15. deviceType="windturbine"
  16. alarmType="custom"
  17. />
  18. </div>
  19. </div>
  20. <div class="cardLine">
  21. <div class="lineItem card">
  22. <Safecom
  23. title="光伏报警"
  24. deviceType="inverter"
  25. alarmType="inverter"
  26. />
  27. </div>
  28. <div class="lineItem card">
  29. <Safecom title="光伏预警" deviceType="inverter" alarmType="custom" />
  30. </div>
  31. <!-- <div class="lineItem card">
  32. <Safecom
  33. title="升压站事件"
  34. deviceType="booststation"
  35. alarmType="custom"
  36. />
  37. </div> -->
  38. </div>
  39. <div class="cardLine">
  40. <div class="lineItem card" style="height: 100%">
  41. <Safecom
  42. title="升压站报警"
  43. deviceType="booststation"
  44. alarmType="booststation"
  45. />
  46. </div>
  47. <!-- <div class="lineItem card">
  48. <Safecom
  49. title="升压站事件"
  50. deviceType="booststation"
  51. alarmType="custom"
  52. />
  53. </div> -->
  54. </div>
  55. </div>
  56. </div>
  57. </template>
  58. <script setup>
  59. import dayjs from "dayjs";
  60. import Safecom from "@/views/IntegratedAlarm/safe/components/safecomponent.vue";
  61. </script>
  62. <style lang="less" scoped>
  63. .safe {
  64. width: 100%;
  65. height: 100%;
  66. padding: 20px 10px;
  67. .bottomCard {
  68. display: flex;
  69. align-items: center;
  70. width: 100%;
  71. height: 100%;
  72. justify-content: space-around;
  73. .cardLine {
  74. width: calc(100% / 3 - 15px);
  75. height: 100%;
  76. display: flex;
  77. flex-direction: column;
  78. justify-content: space-between;
  79. align-items: center;
  80. .lineItem {
  81. width: 100%;
  82. height: calc(100% / 2 - 10px);
  83. }
  84. }
  85. }
  86. }
  87. .card {
  88. padding: 10px;
  89. border-radius: 4px;
  90. background-color: #161f1e;
  91. overflow: hidden;
  92. color: #fff;
  93. -webkit-transition: 0.3s;
  94. transition: 0.3s;
  95. box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
  96. }
  97. </style>
  98. <style lang="scss">
  99. .notificatBox {
  100. width: 100%;
  101. .notificatP {
  102. color: rgb(7, 7, 7);
  103. }
  104. .btn {
  105. display: flex;
  106. justify-content: flex-end;
  107. }
  108. }
  109. .scrollbarC {
  110. width: 100%;
  111. display: flex;
  112. flex-wrap: wrap;
  113. justify-content: flex-start;
  114. align-content: flex-start;
  115. }
  116. </style>