fiberBunbleJc.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <div class="fiberBunbleJc">
  3. <div class="fiberBunbleJc-box" v-for="(item, index) in fiberBunbleJcList" :key="index">
  4. <div class="jc-title">{{ item.type }}</div>
  5. <div class="jc-item">
  6. <span class="item-label">{{ `${item.label} : ` }}</span>
  7. <span class="item-val">{{ `${item.val}` || '--' }}</span>
  8. <span class="item-dw">{{ item.unit }}</span>
  9. </div>
  10. <div class="jc-item1">
  11. <span class="item-label">{{ `${item.label1} : ` }}</span>
  12. <span class="item-val">{{ item.val1 || '--' }}</span>
  13. </div>
  14. <div class="jc-item2">
  15. <span class="item-label">{{ `${item.label2} : ` }}</span>
  16. <span class="item-val">{{ item.val2 || '--' }}</span>
  17. </div>
  18. </div>
  19. </div>
  20. </template>
  21. <script setup lang="ts">
  22. import { ref, reactive, defineProps, watch } from 'vue';
  23. let props = defineProps({
  24. bunbleData: {
  25. type: Array,
  26. default: () => {
  27. return []
  28. }
  29. }
  30. })
  31. let fiberBunbleJcList = ref<any[]>([]);
  32. watch(() => props.bunbleData, (newB, oldB) => {
  33. console.log(newB,'newB---------')
  34. if (newB.length == 0) {
  35. fiberBunbleJcList.value = newB
  36. }
  37. }, { immediate: true, deep: true })
  38. </script>
  39. <style lang="less" scoped>
  40. .fiberBunbleJc {
  41. display: flex;
  42. position: relative;
  43. flex-direction: column;
  44. align-items: center;
  45. justify-content: space-around;
  46. width: 100%;
  47. height: 100%;
  48. .fiberBunbleJc-box {
  49. position: relative;
  50. width: 100%;
  51. height: 65px;
  52. background: url('../../../../../assets/images/fire/firehome/img-7.png') no-repeat center;
  53. background-size: 100% 100%;
  54. .jc-title {
  55. position: absolute;
  56. top: 50%;
  57. transform: translate(0, -50%);
  58. color: #fff;
  59. font-size: 14px;
  60. font-weight: bolder;
  61. }
  62. &:nth-child(1) .jc-title {
  63. left: 54px;
  64. }
  65. &:nth-child(2) .jc-title {
  66. left: 50px;
  67. }
  68. &:nth-child(3) .jc-title {
  69. left: 54px;
  70. }
  71. &:nth-child(4) .jc-title {
  72. left: 50px;
  73. }
  74. &:nth-child(5) .jc-title {
  75. left: 46px;
  76. }
  77. &:nth-child(6) .jc-title {
  78. left: 46px;
  79. }
  80. &:nth-child(7) .jc-title {
  81. left: 112px;
  82. }
  83. .jc-item {
  84. display: flex;
  85. position: absolute;
  86. left: 20%;
  87. align-items: center;
  88. height: 100%;
  89. }
  90. .jc-item1 {
  91. display: flex;
  92. position: absolute;
  93. left: 40%;
  94. align-items: center;
  95. height: 100%
  96. }
  97. .jc-item2 {
  98. display: flex;
  99. position: absolute;
  100. left: 70%;
  101. align-items: center;
  102. height: 100%
  103. }
  104. .item-label {
  105. color: #fff;
  106. font-size: 12px;
  107. }
  108. .item-val {
  109. margin-left: 10px;
  110. color: #089dff;
  111. font-size: 14px;
  112. }
  113. .item-dw {
  114. margin-left: 5px;
  115. color: #089dff;
  116. }
  117. }
  118. }
  119. </style>