时空网前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.4 KiB

  1. <template>
  2. <view class="content">
  3. <view class="lf-row-between item">
  4. <view class="lf-color-gray">在线客服</view>
  5. <button class="btn" open-type="contact">在线联系</button>
  6. </view>
  7. <view class="lf-row-between item">
  8. <view class="lf-color-gray">服务时间</view>
  9. <view>10:0020:00</view>
  10. </view>
  11. <view class="lf-row-between item">
  12. <view class="lf-color-gray">客服电话</view>
  13. <view>13278683790</view>
  14. </view>
  15. <view class="lf-row-between item">
  16. <view class="lf-color-gray">联系地址</view>
  17. <view>南宁市青秀区汇东国际F座6楼</view>
  18. </view>
  19. <view class="lf-row-between item">
  20. <view class="lf-color-gray">客服微信</view>
  21. <view>
  22. <text>whhu8798</text>
  23. <text class="lf-m-l-20 lf-color-primary">复制</text>
  24. </view>
  25. </view>
  26. <view class="lf-row-between item">
  27. <view class="lf-color-gray">当前版本</view>
  28. <view>1.0.1</view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data(){
  35. return {
  36. }
  37. },
  38. onLoad(){
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped="scoped">
  45. .content{
  46. width: 750rpx;
  47. height: auto;
  48. padding: 0 32rpx;
  49. box-sizing: border-box;
  50. .item{
  51. width: 100%;
  52. height: 104rpx;
  53. border-bottom: 1rpx solid #EEEEEE;
  54. .btn{
  55. margin: 0;
  56. width: 176rpx;
  57. height: 60rpx;
  58. background: #FE9903;
  59. border-radius: 30rpx;
  60. color: #FFFFFF;
  61. font-size: 28rpx;
  62. line-height: 60rpx;
  63. }
  64. }
  65. }
  66. </style>