commonQuestion.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <template>
  2. <view class="page-wrap">
  3. <view class="chat-panel">
  4. <image class="avatar" src="../../static/icon_logo.png" mode="aspectFill"></image>
  5. <view class="text-box">
  6. 您可能关心这些问题:
  7. </view>
  8. <view class="question-list">
  9. <view class="item">
  10. 创业套餐都包含哪些服务?
  11. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  12. </view>
  13. <view class="item">
  14. 财税平台要单独购买吗?
  15. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  16. </view>
  17. <view class="item">
  18. 企业有多个用户,且权限不同
  19. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  20. </view>
  21. <view class="item">
  22. 企业钱包能做什么?
  23. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  24. </view>
  25. <view class="item">
  26. 企业钱包的钱能退么?
  27. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  28. </view>
  29. <view class="item">
  30. 账单应该怎么支付?
  31. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  32. </view>
  33. <view class="item">
  34. 优惠券怎么使用?
  35. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  36. </view>
  37. <view class="item">
  38. 如何接入办公室视频?
  39. <image class="arrow" src="../../static/svg/arrow.svg"></image>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="tips-row">
  44. 还有其他问题?请咨询<text>4006194699</text>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. }
  53. },
  54. methods: {
  55. }
  56. }
  57. </script>
  58. <style lang="scss" scoped>
  59. .page-wrap {
  60. padding: 68.68rpx 16.48rpx;
  61. }
  62. .chat-panel {
  63. padding-left: 104.4rpx;
  64. position: relative;
  65. .avatar {
  66. width: 82.42rpx;
  67. height: 82.42rpx;
  68. position: absolute;
  69. left: 0;
  70. top: 0;
  71. border: 6.87rpx solid #fff;
  72. box-sizing: border-box;
  73. border-radius: 8.24rpx;
  74. }
  75. .text-box{
  76. width: 480.77rpx;
  77. min-height: 82.42rpx;
  78. font-size: 30.22rpx;
  79. color: #333;
  80. padding: 19.23rpx 20.6rpx;
  81. line-height: 1.5;
  82. box-sizing: border-box;
  83. background: #fff;
  84. word-break: break-all;
  85. position: relative;
  86. &::before{
  87. content: '';
  88. position: absolute;
  89. left: -8.24rpx;
  90. top: 27.47rpx;
  91. width: 24.73rpx;
  92. height: 24.73rpx;
  93. transform: rotate(45deg);
  94. background: #fff;
  95. }
  96. }
  97. .question-list{
  98. width: 480.77rpx;
  99. background: #fff;
  100. border: 1px solid #e0e0e0;
  101. box-sizing: border-box;
  102. margin-top: 13.74rpx;
  103. .item{
  104. font-size: 27.47rpx;
  105. color: #0384D6;
  106. line-height: 82.42rpx;
  107. border-top: 1px solid #e0e0e0;
  108. padding: 0 54.95rpx 0 27.47rpx;
  109. white-space: nowrap;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. position: relative;
  113. &:first-child{
  114. border: none;
  115. }
  116. .arrow{
  117. width: 27.47rpx;
  118. height: 27.47rpx;
  119. position: absolute;
  120. right: 27.47rpx;
  121. top: 50%;
  122. transform: translateY(-50%);
  123. }
  124. }
  125. }
  126. }
  127. .tips-row{
  128. font-size: 27.47rpx;
  129. text-align: center;
  130. margin-top: 54.95rpx;
  131. text{
  132. color: #0384D6;
  133. margin-left: 13.74rpx;
  134. }
  135. }
  136. </style>