contact.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view class="main">
  3. <uni-title type="h1" title="联系我们" align="center"></uni-title>
  4. <view class="main-footer">
  5. <uni-title type="h3" title="欢迎关注,了解门墩儿的新动态。"></uni-title>
  6. <view class="subTitle">门墩儿在所有主流社交媒体都有账号。欢迎关注我们,以便了解关于发展趋势和领导力问题的最新见解。</view>
  7. <view class="main-footer-contact">
  8. <view class="main-footer-contact-item"><text>猎头顾问</text>:姚嘉庆 Julia Yao</view>
  9. <view class="main-footer-contact-item"><text>邮箱</text>:Julia.yao@menduner.com</view>
  10. <view class="main-footer-contact-item"><text>手机</text>:18501626969</view>
  11. <view class="qr">
  12. <image
  13. src="https://minio.citupro.com/dev/menduner/official-account-code4.jpg"
  14. mode="scaleToFill"
  15. />
  16. <view class="subTitle">关注menduner公众号</view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script setup>
  23. </script>
  24. <style lang="scss" scoped>
  25. .main {
  26. &-footer {
  27. width: 100%;
  28. padding: 30rpx;
  29. box-sizing: border-box;
  30. background: #f5f5f5;
  31. .subTitle {
  32. font-size: 24rpx;
  33. margin-bottom: 20rpx;
  34. line-height: 40rpx;
  35. color: #666;
  36. }
  37. &-contact {
  38. &-item {
  39. margin-bottom: 20rpx;
  40. text {
  41. display: inline-block;
  42. width: 140rpx;
  43. text-align-last: justify;
  44. }
  45. }
  46. }
  47. .qr {
  48. image {
  49. width: 240rpx;
  50. height: 240rpx;
  51. margin-bottom: 10rpx;
  52. }
  53. width: 100%;
  54. display: flex;
  55. justify-content: center;
  56. flex-direction: column;
  57. align-items: center;
  58. margin-top: 20rpx;
  59. }
  60. }
  61. }
  62. </style>