addContant.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <Container
  3. title="添加老师咨询"
  4. :scrollStyle="{
  5. padding: 0,
  6. }"
  7. >
  8. <view class="bg">
  9. <view class="bg-1">
  10. <image
  11. src="https://openwork-oss.oss-cn-shenzhen.aliyuncs.com/uploads/question/2025/06/lW8ekxb2fdipLnTFDC4njYTMqz4ZsoDV6iQy6JRu.jpg"
  12. show-menu-by-longpress
  13. class="qrcode"
  14. ></image>
  15. </view>
  16. </view>
  17. </Container>
  18. </template>
  19. <script setup>
  20. import Container from "@/components/Container/Container.vue";
  21. </script>
  22. <style scoped lang="scss">
  23. .bg {
  24. width: 100%;
  25. height: 100%;
  26. background: url("https://openwork-oss.oss-cn-shenzhen.aliyuncs.com/uploads/question/2025/05/yz2eTeqIRv60IEe6kOQBOYlHr75wiFIpeFqrJmgZ.png");
  27. background-size: 100% 100%;
  28. padding: 216rpx 10rpx;
  29. .bg-1 {
  30. width: 730.71rpx;
  31. height: 841rpx;
  32. background: url("https://openwork-oss.oss-cn-shenzhen.aliyuncs.com/uploads/question/2025/05/cOeqNuCTmz0r5LeZnW6qnKIFZJQCC1r4FarsZS55.png");
  33. background-size: 100% 100%;
  34. position: relative;
  35. .qrcode {
  36. position: absolute;
  37. top: 205rpx;
  38. left: 141rpx;
  39. width: 448rpx;
  40. height: 448rpx;
  41. background-size: 100% 100%;
  42. }
  43. }
  44. }
  45. </style>