s-follow-modal.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <!-- 关注 -->
  3. <su-popup :show="show" @close="colseWalletModal" round="10">
  4. <view class="login-wrap">
  5. <view class="head-box">
  6. <view class=" ss-m-b-20">
  7. <view class="head-title ss-m-r-40 head-title-animation">
  8. 关注公众号
  9. </view>
  10. <view class="ss-flex ss-row-center">
  11. <canvas class="hideCanvas" canvas-id="myCanvas" style="width: 300px; height: 300px;"></canvas>
  12. <image :src="imagePath" mode="widthFix" />
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </su-popup>
  18. </template>
  19. <script setup>
  20. import {
  21. computed,
  22. ref,
  23. } from 'vue';
  24. import sheep from '@/sheep';
  25. import {
  26. showWalletModal,
  27. colseWalletModal
  28. } from '@/sheep/hooks/useModal';
  29. const show = computed(() => sheep.$store('modal').subscribe);
  30. import QSCanvas from 'qs-canvas';
  31. // 创建一个响应式的图像路径变量
  32. const imagePath = ref('');
  33. // 绘制二维码的函数
  34. async function drawQrCode(url) {
  35. console.log(url)
  36. const qsc = new QSCanvas({
  37. canvasId: 'myCanvas',
  38. width: 300,
  39. height: 300,
  40. setCanvasWH: (canvas) => {
  41. // 动态设置画布宽高
  42. },
  43. });
  44. await qsc.drawQrCode({
  45. val: url, // 二维码内容
  46. x: 25,
  47. y: 15,
  48. size: 250, // 二维码大小
  49. background: '#ffffff', // 背景色
  50. foreground: '#000000', // 前景色
  51. pdground: '#000000', // 定位角点颜色
  52. correctLevel: 3, // 容错级别
  53. });
  54. // 计算二维码底部中心位置
  55. const qrY = 15;
  56. const qrHeight = 250;
  57. const textX = 300 / 2; // 文字的x位置,水平居中
  58. const textY = qrY + qrHeight + 15; // 文字的y位置,在二维码下方留出20px的空间
  59. // 绘制文字
  60. await qsc.drawText({
  61. val: '长按二维码关注公众号', // 文字内容
  62. x: textX,
  63. y: textY,
  64. maxWidth: 250, // 文字的最大宽度,确保文字不会超出画布
  65. paintbrushProps: {
  66. fillStyle: '#333', // 文字颜色
  67. textAlign: 'center', // 文字水平居中
  68. textBaseline: 'middle', // 文字垂直居中
  69. font: { // 字体属性以对象格式传递
  70. fontStyle: 'normal', // 字体样式
  71. fontVariant: 'normal', // 字体变体
  72. fontWeight: 'normal', // 字体粗细
  73. fontSize: 14, // 字体大小
  74. fontFamily: 'sans-serif' // 字体系列
  75. },
  76. },
  77. });
  78. await qsc.draw();
  79. // 确保使用 await 获取到图片路径
  80. const imagePathData = await qsc.toImage();
  81. if (imagePathData) {
  82. imagePath.value = imagePathData;
  83. }
  84. }
  85. const BASE_URL = import.meta.env.SHOPRO_DEV_BASE_URL;
  86. if (BASE_URL.includes('letcgo.com')) {
  87. // 如果是常来此购的网址接口 就用常来此购的二维码
  88. drawQrCode('https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzkwNDY4NjUxMg==&scene=110#wechat_redirect');
  89. } else {
  90. // 如果不是常来此购的网址接口 就用非繁科技的二维码
  91. drawQrCode('https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzkzNDEwNDU4OQ==&scene=124#wechat_redirect');
  92. }
  93. </script>
  94. <style lang="scss" scoped>
  95. .hideCanvas {
  96. position: fixed;
  97. top: -99999rpx;
  98. left: -99999rpx;
  99. z-index: -99999;
  100. }
  101. .login-wrap {
  102. padding: 50rpx 34rpx;
  103. min-height: 500rpx;
  104. background-color: #fff;
  105. border-radius: 20rpx 20rpx 0 0;
  106. }
  107. .head-box {
  108. .head-title {
  109. min-width: 160rpx;
  110. font-size: 36rpx;
  111. font-weight: bold;
  112. color: #333333;
  113. line-height: 36rpx;
  114. }
  115. .head-title-active {
  116. width: 160rpx;
  117. font-size: 32rpx;
  118. font-weight: 600;
  119. color: #999;
  120. line-height: 36rpx;
  121. }
  122. .head-title-animation {
  123. animation-name: title-animation;
  124. animation-duration: 0.1s;
  125. animation-timing-function: ease-out;
  126. animation-fill-mode: forwards;
  127. }
  128. .head-title-line {
  129. position: relative;
  130. &::before {
  131. content: '';
  132. width: 1rpx;
  133. height: 34rpx;
  134. background-color: #e4e7ed;
  135. position: absolute;
  136. left: -30rpx;
  137. top: 50%;
  138. transform: translateY(-50%);
  139. }
  140. }
  141. .head-subtitle {
  142. font-size: 26rpx;
  143. font-weight: 400;
  144. color: #afb6c0;
  145. text-align: left;
  146. display: flex;
  147. }
  148. }
  149. </style>