join-us.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view class="join-us">
  3. <view class="ewm-container">
  4. <view class="qrcode"><image :src="staticUrl + 'ewm-contact.png'" mode=""></image></view>
  5. <view class="message">
  6. <view class="row">长按识别二维码</view>
  7. <view class="row">加微信获取优惠福利</view>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {}
  14. </script>
  15. <style lang="scss" scoped>
  16. .join-us {
  17. @extend .cm-flex-center;
  18. width: 100%;
  19. height: 100vh;
  20. background: url(https://static.caimei365.com/app/mini-hehe/icon/bg-join.png) no-repeat center;
  21. background-size: 100% auto;
  22. background-color: #fff;
  23. .ewm-container {
  24. position: relative;
  25. width: 622rpx;
  26. height: 766rpx;
  27. background: #ffffff;
  28. border-radius: 16rpx;
  29. &::after {
  30. content: '';
  31. position: absolute;
  32. bottom: 0;
  33. left: 50%;
  34. transform: translateX(-50%);
  35. display: block;
  36. width: 48rpx;
  37. height: 8rpx;
  38. background: #ff457b;
  39. border-radius: 8rpx 8rpx 0px 0px;
  40. }
  41. .qrcode {
  42. width: 500rpx;
  43. height: 500rpx;
  44. margin: 61rpx 61rpx 0;
  45. background: #000;
  46. border-radius: 8rpx;
  47. image {
  48. width: 500rpx;
  49. height: 500rpx;
  50. }
  51. }
  52. .message {
  53. margin-top: 48rpx;
  54. text-align: center;
  55. font-size: 40rpx;
  56. color: #333333;
  57. .row {
  58. &:first-child {
  59. font-weight: bold;
  60. }
  61. &:last-child {
  62. margin-top: 8rpx;
  63. font-size: 32rpx;
  64. color: #666666;
  65. }
  66. }
  67. }
  68. }
  69. }
  70. </style>