s-follow-modal.vue 4.2 KB

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