service.vue 751 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view>
  3. <view class="bg-white margin-tb-sm padding flex align-center">
  4. <image src="../../static/service.png" mode="aspectFit"
  5. class="service"></image>
  6. <view class="content flex justify-between flex-direction">
  7. <view class="lem-text-black title">在线客服</view>
  8. <view class="phone text-df">121421532</view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. page{
  25. background: #f1f1f1;
  26. }
  27. .title{
  28. font-size: 32rpx;
  29. line-height: 38rpx;
  30. }
  31. .service{
  32. width: 77rpx;
  33. height: 77rpx;
  34. border-radius: 5000rpx;
  35. }
  36. .content{
  37. height: 77rpx;
  38. margin-left: 32rpx;
  39. }
  40. .phone{
  41. color:#2AAB34;
  42. }
  43. </style>