substationJc.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <div class="substationJc">
  3. <div class="substation-box" v-for="(item, index) in substationList" :key="index">
  4. <div class="substation-title">{{ item.title }}</div>
  5. <div class="substation-label">{{ item.label }}</div>
  6. <div class="substation-val">{{ `${item.val}${item.dw}` || '--' }}</div>
  7. </div>
  8. </div>
  9. </template>
  10. <script setup lang="ts">
  11. import { ref, reactive, defineProps, watch } from 'vue';
  12. let props = defineProps({
  13. substationData: {
  14. type: Array,
  15. default: () => {
  16. return []
  17. }
  18. }
  19. })
  20. let substationList = ref<any[]>([]);
  21. watch(() => props.substationData, (newS, oldS) => {
  22. console.log(newS, 'newS--------')
  23. if (newS.length != 0) {
  24. substationList.value = newS
  25. }
  26. }, { immediate: true, deep: true })
  27. </script>
  28. <style lang="less" scoped>
  29. .substationJc {
  30. display: flex;
  31. position: relative;
  32. flex-direction: column;
  33. align-items: center;
  34. justify-content: center;
  35. width: 100%;
  36. height: 100%;
  37. .substation-box {
  38. display: flex;
  39. box-sizing: border-box;
  40. width: 90%;
  41. height: 145px;
  42. padding-top: 30px;
  43. background: url('../../../../../assets/images/fire/firehome/list.png') no-repeat bottom;
  44. background-size: 100% 100%;
  45. color: #fff;
  46. font-size: 14px;
  47. .substation-title {
  48. display: flex;
  49. flex: 1;
  50. justify-content: center;
  51. height: 100%;
  52. font-size: 12px;
  53. }
  54. .substation-label {
  55. display: flex;
  56. flex: 1;
  57. justify-content: center;
  58. height: 100%;
  59. font-size: 12px;
  60. }
  61. .substation-val {
  62. display: flex;
  63. flex: 1;
  64. justify-content: center;
  65. height: 100%;
  66. color: #089dff;
  67. }
  68. }
  69. }
  70. </style>