s-follow-modal.vue 4.0 KB

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