internshipButler.vue 640 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="parents">
  3. <image src="https://minio.citupro.com/dev/static/wx.jpg" mode="aspectFit" show-menu-by-longpress="true" class="img-code"></image>
  4. <view class="tipsText">长按添加管家微信</view>
  5. </view>
  6. </template>
  7. <script setup>
  8. // 实习管家
  9. </script>
  10. <style lang="less" scoped>
  11. .parents{
  12. position: relative;
  13. background-color: #f8f8f8;
  14. }
  15. .img-code{
  16. width: 100%;
  17. height: 100vh;
  18. }
  19. .tipsText{
  20. position: absolute;
  21. top: 89%;
  22. right: 50%;
  23. transform: translate(50%, 0);
  24. text-align: center;
  25. color: #c2c5c7;
  26. font-size: 12px;
  27. font-weight: 700;
  28. }
  29. </style>