鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
879 B

  1. <template>
  2. <uv-popup
  3. ref="popup"
  4. :overlayOpacity="0.8"
  5. mode="bottom"
  6. round="20rpx"
  7. :zIndex="1000000"
  8. >
  9. <view class="flex qr-popup">
  10. <text class="tips">即刻关注</text>
  11. <image class="qr" :src="src" :show-menu-by-longpress="true"></image>
  12. </view>
  13. </uv-popup>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. src: {
  19. type: String,
  20. default: null
  21. }
  22. },
  23. data() {
  24. return {
  25. }
  26. },
  27. methods: {
  28. open() {
  29. this.$refs.popup.open();
  30. },
  31. close() {
  32. this.$refs.popup.close();
  33. },
  34. },
  35. }
  36. </script>
  37. <style scoped lang="scss">
  38. .qr-popup {
  39. flex-direction: column;
  40. padding-bottom: 104rpx;
  41. .tips {
  42. margin-top: 75rpx;
  43. color: #1B1B1B;
  44. font-size: 32rpx;
  45. }
  46. .qr {
  47. margin-top: 40rpx;
  48. width: 350rpx;
  49. height: 350rpx;
  50. }
  51. }
  52. </style>