support.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <div>
  3. <div class="title">
  4. <span>技术支持</span>
  5. </div>
  6. <ul class="content">
  7. <li class="item">
  8. <div class="item-title">
  9. <span>Q: 如何获取帮助?</span>
  10. </div>
  11. <div class="item-content">
  12. <span>A: 使用合方圆无线通信模块的客户朋友需要技术支持的请整理好相关问题发送给我们技术支持杨工</span>
  13. <br/>
  14. <span>电话号码:
  15. <span class="mark">15817487997</span>
  16. <span class="text-m">微信同号</span>
  17. </span>
  18. </div>
  19. </li>
  20. <li class="item">
  21. <div class="item-title">
  22. <span>Q: 如何二次开发?</span>
  23. </div>
  24. <div class="item-content">
  25. <span>A: 需要二次开发模块功能的客户请联系相关销售安排专业的技术人员技术支持 </span>
  26. <br/>
  27. <span>手机微信同号。:
  28. <span class="mark" >15817487997</span>
  29. <span class="text-m">刘工</span>
  30. </span>
  31. </div>
  32. </li>
  33. <li class="item">
  34. <div class="item-title">
  35. <span>Q: 如何定制开发?</span>
  36. </div>
  37. <div class="item-content">
  38. <span>A: 需要定制化开发模块功能,以及识别算法的客户请联系相关销售人员来获得更多支持 </span>
  39. <br/>
  40. <span>手机微信同号。:
  41. <span class="mark" >15817487997</span>
  42. <span class="text-m mark">刘工</span>
  43. </span>
  44. </div>
  45. </li>
  46. <li class="item">
  47. <div class="item-title">
  48. <span>Q: 如何向我们反馈问题?</span>
  49. </div>
  50. <div class="item-content">
  51. <span>A: 关于GPRS+GPS无线模块的以及4G模块PCB设计中出现的的问题,请及时联系合方圆销售或发送邮件给技术支持袁工。 </span>
  52. <br/>
  53. </div>
  54. </li>
  55. <li class="item">
  56. <div class="item-title">
  57. <span>Q: 如何使用我们的产品?</span>
  58. </div>
  59. <div class="item-content">
  60. <span>A: 关于终端产品使用有详细的使用说明、如有不明白的请联系我们的代理商。 </span>
  61. <br/>
  62. </div>
  63. </li>
  64. </ul>
  65. <div class="support-end">
  66. 若您在产品使用过程中遇到问题,欢迎联系我们为您解决,感谢您对合方圆的支持~
  67. </div>
  68. </div>
  69. </template>
  70. <script>
  71. export default {
  72. name: "support"
  73. }
  74. </script>
  75. <style scoped>
  76. .title{
  77. width: 100%;
  78. height: 50px;
  79. line-height: 50px;
  80. text-align: center;
  81. font-size: 20px;
  82. font-weight: bold;
  83. color: #333;
  84. }
  85. .content{
  86. width: 100%;
  87. height: auto;
  88. padding: 0 20px;
  89. }
  90. .content .item{
  91. width: 100%;
  92. height: 100px;
  93. margin-bottom: 20px;
  94. list-style: none;
  95. box-shadow: 0 0 5px #ccc;
  96. padding: 10px;
  97. }
  98. .content .item-all{
  99. width: 100%;
  100. height: auto;
  101. margin-bottom: 20px;
  102. list-style: none;
  103. box-shadow: 0 0 5px #ccc;
  104. padding: 10px;
  105. }
  106. .content .item .item-title{
  107. width: 100%;
  108. height: 30px;
  109. line-height: 30px;
  110. font-size: 16px;
  111. font-weight: bold;
  112. color: #333;
  113. }
  114. .content .item .item-content{
  115. width: 100%;
  116. height: auto;
  117. line-height: 20px;
  118. font-size: 14px;
  119. color: #333;
  120. }
  121. </style>