ContactUs.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <div class="repair">
  3. <div style="padding: 20px 0px 0px 30px">
  4. <el-button
  5. style="position: absolute; top: 20px; right: 66px"
  6. size="medium"
  7. round
  8. icon="el-icon-back"
  9. @click="handleBack()"
  10. >返回</el-button
  11. >
  12. <div class="repair-box-top">
  13. <span>联系我们</span>
  14. <div class="repair-xiantiao"></div>
  15. </div>
  16. <div class="repair-box-item">
  17. <span class="item1">官方电话</span>
  18. <div class="phone1">
  19. <span>18596992323</span>
  20. </div>
  21. <span class="item2">官方微信</span>
  22. <div class="phone2">
  23. <span>18596992323</span>
  24. </div>
  25. <span class="item3">公众号二维码</span>
  26. <img class="gzh" src="../../assets/img/gzh.png" alt="" />
  27. <span class="item4">抖音二维码</span>
  28. <img class="dy" src="../../assets/img/dy.png" alt="" />
  29. </div>
  30. </div>
  31. </div>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {};
  37. },
  38. mounted() {},
  39. methods: {
  40. handleBack() {
  41. this.$router.push({
  42. name: "personalCenter",
  43. });
  44. },
  45. },
  46. };
  47. </script>
  48. <style lang="scss" scoped>
  49. .repair::v-deep {
  50. width: 1594px;
  51. height: calc(100vh * 905 / 1080);
  52. background: #ffffff;
  53. border-radius: 12px;
  54. .repair-box-top {
  55. text-align: left;
  56. > span:first-child {
  57. font-family: Microsoft YaHei;
  58. font-weight: bold;
  59. font-size: 22px;
  60. color: #000000;
  61. line-height: 50px;
  62. text-align: left;
  63. }
  64. .repair-xiantiao {
  65. width: 1534px;
  66. height: 2px;
  67. background: #eff2f6;
  68. }
  69. }
  70. .repair-box-item {
  71. position: relative;
  72. .item1 {
  73. position: absolute;
  74. top: 20px;
  75. left: 30px;
  76. }
  77. .phone1 {
  78. position: absolute;
  79. top: 90px;
  80. left: 15px;
  81. }
  82. .item2 {
  83. position: absolute;
  84. top: 20px;
  85. right: 700px;
  86. }
  87. .phone2 {
  88. position: absolute;
  89. top: 90px;
  90. right: 30px;
  91. }
  92. .item3 {
  93. position: absolute;
  94. top: 230px;
  95. left: 30px;
  96. }
  97. .item4 {
  98. position: absolute;
  99. right: 681px;
  100. top: 230px;
  101. }
  102. .gzh {
  103. width: 200px;
  104. height: 200px;
  105. position: fixed;
  106. top: 530px;
  107. left: 334px;
  108. }
  109. .dy {
  110. width: 200px;
  111. height: 200px;
  112. position: fixed;
  113. top: 530px;
  114. left: 1103px;
  115. }
  116. > span {
  117. font-family: Microsoft YaHei;
  118. font-weight: 400;
  119. font-size: 20px;
  120. color: #000000;
  121. line-height: 50px;
  122. }
  123. .phone1,
  124. .phone2 {
  125. width: 752px;
  126. height: 76px;
  127. background: #f4f6f9;
  128. border-radius: 14px;
  129. text-align: left;
  130. > span {
  131. font-family: Microsoft YaHei;
  132. font-weight: 400;
  133. font-size: 18px;
  134. color: #626262;
  135. line-height: 76px;
  136. }
  137. }
  138. }
  139. }
  140. </style>