spdgc.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <script setup>
  2. </script>
  3. <template>
  4. <el-row> <el-col :span="13">
  5. <div class="main">
  6. <div class="shape">
  7. <span style="font-size: 20rem;font-weight: 600;">变电设施&nbsp;&nbsp;</span>
  8. <span style="font-size: 28rem;font-weight: 700;color: rgba(29,191,205,1);">26</span>
  9. <span style="font-weight: 600;">套</span>
  10. <div class="shape2">
  11. <span style="font-size: 20rem;font-weight: 600;">配电设施&nbsp;&nbsp;</span>
  12. <span style="font-size: 28rem;font-weight: 700;color: rgba(29,191,205,1);">37</span>
  13. <span style="font-weight: 600;">套</span>
  14. </div>
  15. <div class="shape3">
  16. <span style="font-size: 20rem;margin-left: 6rem;font-weight: 600;">高压线路&nbsp;&nbsp;</span>
  17. <span style="font-size: 28rem;font-weight: 700;color: rgba(29,191,205,1);">73</span>
  18. <span style="font-weight: 600;">km</span>
  19. </div>
  20. <div class="shape4">
  21. <span style="font-size: 20rem;margin-left: 18rem;font-weight: 600;">低压线路&nbsp;&nbsp;</span>
  22. <span style="font-size: 28rem;font-weight: 700;color: rgba(29,191,205,1);">120</span>
  23. <span style="font-weight: 600;">km</span>
  24. </div>
  25. </div>
  26. </div>
  27. </el-col> <el-col :span="11">
  28. <div style="margin-top: 60rem;"><img src="@/assets/images/jgqpdl.png"/></div>
  29. <div style="font-size: 19rem;font-weight: 600;margin-top: 5rem;">井灌区配电率</div>
  30. </el-col> </el-row>
  31. </template>
  32. <script>
  33. let jt3d = undefined;
  34. export default {
  35. data() {
  36. return {
  37. // viewersName: '', //视角标签名称
  38. // ImgurlList: [], //截图地址列表
  39. }
  40. },
  41. methods: {
  42. }
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .main {
  47. width: 100%;
  48. height: 97%;
  49. display: flex;
  50. flex: 2;
  51. flex-wrap: wrap;
  52. justify-content: space-around;
  53. align-items: center;
  54. flex-direction: row;
  55. // color: rgba(29,191,205,1);
  56. margin-left: 10rem;
  57. margin-top: 25rem;
  58. .shape {
  59. margin-top: 6rem;
  60. .shape2 {
  61. margin-top: 10rem;
  62. }
  63. .shape3 {
  64. margin-top: 10rem;
  65. }
  66. .shape4 {
  67. margin-top: 10rem;
  68. }
  69. }
  70. }
  71. </style>