spdgc.vue 2.5 KB

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