contact.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="main">
  3. <uni-title v-if="showTitle" 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. defineProps({
  24. showTitle: {
  25. type: Boolean,
  26. default: true
  27. }
  28. })
  29. </script>
  30. <style lang="scss" scoped>
  31. .main {
  32. &-footer {
  33. width: 100%;
  34. padding: 30rpx;
  35. box-sizing: border-box;
  36. background: #f5f5f5;
  37. .subTitle {
  38. font-size: 24rpx;
  39. margin-bottom: 20rpx;
  40. line-height: 40rpx;
  41. color: #666;
  42. }
  43. &-contact {
  44. &-item {
  45. margin-bottom: 20rpx;
  46. text {
  47. display: inline-block;
  48. width: 140rpx;
  49. text-align-last: justify;
  50. }
  51. }
  52. }
  53. .qr {
  54. image {
  55. width: 240rpx;
  56. height: 240rpx;
  57. margin-bottom: 10rpx;
  58. }
  59. width: 100%;
  60. display: flex;
  61. justify-content: center;
  62. flex-direction: column;
  63. align-items: center;
  64. margin-top: 20rpx;
  65. }
  66. }
  67. }
  68. </style>