contactService.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view>
  3. <ujp-navbar title="联系客服" ></ujp-navbar>
  4. <view class="service">
  5. <view class="left">
  6. <view class="text">
  7. 平台服务
  8. </view>
  9. <view class="tel">
  10. 400-8899-619
  11. </view>
  12. </view>
  13. <view class="img-box">
  14. <img src="../../assets/img/fas fa-phone@3x.png" alt="">
  15. </view>
  16. </view>
  17. <view class="service breakdown">
  18. <view class="left">
  19. <view class="text">
  20. 平台服务
  21. </view>
  22. <view class="tel">
  23. 15607217777
  24. </view>
  25. </view>
  26. <view class="img-box">
  27. <img src="../../assets/img/fas fa-phone@3x.png" alt="">
  28. </view>
  29. </view>
  30. <view class="service after-sale">
  31. <view class="left">
  32. <view class="text">
  33. 平台服务
  34. </view>
  35. <view class="tel">
  36. 15607217777
  37. </view>
  38. </view>
  39. <view class="img-box">
  40. <img src="../../assets/img/fas fa-phone@3x.png" alt="">
  41. </view>
  42. </view>
  43. <!-- 意见反馈 -->
  44. <view class="feedback">
  45. <view class="title">
  46. 您也可以在线提交反馈意见:
  47. </view>
  48. <u-button>意见反馈</u-button>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. }
  57. },
  58. methods: {
  59. }
  60. }
  61. </script>
  62. <style lang="scss" scoped>
  63. page{
  64. background-color: #fff;
  65. }
  66. .service{
  67. width: 91.4%;
  68. margin:12px auto 0;
  69. padding: 24px 20px;
  70. height: 100px;
  71. display: flex;
  72. justify-content: space-between;
  73. background:linear-gradient(to right,#39BCFD,#3F70E6);
  74. color: #fff;
  75. border-radius: 8px;
  76. .text{
  77. line-height: 28px;
  78. color: rgba(255, 255, 255, 100);
  79. font-size: 24px;
  80. }
  81. .tel{
  82. height: 24px;
  83. color: rgba(255, 255, 255, 100);
  84. font-size: 20px;
  85. margin-top: 4px;
  86. }
  87. .img-box{
  88. padding-top: 12px;
  89. img{
  90. width: 28px;
  91. height: 28px;
  92. }
  93. }
  94. }
  95. // 故障处理
  96. .breakdown{
  97. background:linear-gradient(to right,#F19063,#EA624C);
  98. }
  99. // 售后
  100. .after-sale{
  101. background:linear-gradient(to right,#30CDBD,#04C08F);
  102. }
  103. .feedback{
  104. padding: 40px 18px;
  105. }
  106. .u-btn{
  107. background-color: rgba(244, 248, 255, 100);
  108. color: rgba(16, 16, 16, 100);
  109. font-size: 16px;
  110. border-radius: 8px;
  111. height: 44px;
  112. margin-top: 12px;
  113. border: 1px solid rgba(172, 203, 255, 100);
  114. }
  115. </style>