ubottom.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <view class="contact">
  3. <view class="contact-title">
  4. <text class="text"></text>
  5. <text class="zy">粟珈依安</text>
  6. <text class="text"></text>
  7. </view>
  8. <!-- <view class="contact-content">
  9. <view class="img">
  10. <image src="../static/img/phone.png" mode=""></image>
  11. </view>
  12. <view class="phone">
  13. 专线电话:18252757278
  14. </view>
  15. </view> -->
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. name:"u-bottom",
  21. data() {
  22. return {
  23. };
  24. }
  25. }
  26. </script>
  27. <style lang="scss">
  28. .contact {
  29. width: 100%;
  30. height: 100rpx;
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: center;
  34. align-items: center;
  35. .contact-title {
  36. display: flex;
  37. align-items: center;
  38. .text {
  39. margin: 0 20rpx;
  40. width: 270rpx;
  41. height: 2rpx;
  42. background: #E5E5E5;
  43. }
  44. .zy{
  45. font-size: 30rpx;
  46. font-family: PingFang SC;
  47. font-weight: 500;
  48. color: #999999;
  49. line-height: 42rpx;
  50. }
  51. }
  52. .contact-content {
  53. display: flex;
  54. align-items: center;
  55. .img {
  56. margin: 0 5rpx;
  57. width: 28rpx;
  58. height: 28rpx;
  59. image {
  60. width: 100%;
  61. height: 100%;
  62. }
  63. }
  64. .phone {
  65. font-size: 26rpx;
  66. font-family: PingFang SC;
  67. font-weight: 500;
  68. color: #999999;
  69. line-height: 42rpx;
  70. }
  71. }
  72. }
  73. </style>