index.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <template>
  2. <view class="merchantCode">
  3. <view class="code-list">
  4. <view class="code-item" @click="goCodeDetail(0)">
  5. <view class="code-illustrate">
  6. <image class="" :src="shopInfo.shopLogo" />
  7. <text>商家店铺码</text>
  8. </view>
  9. <view class="code-img">
  10. <image class="" :src="codeImage" />
  11. <u-qrcode
  12. v-show="false"
  13. ref="code"
  14. canvas-id="code"
  15. :value="shopText"
  16. :size="size"
  17. :options="{
  18. foreground,
  19. }"
  20. @complete="complete($event,'code')"
  21. ></u-qrcode>
  22. <!-- <canvas canvas-id="shopCode"></canvas> -->
  23. </view>
  24. <view class="code-logo">
  25. <image class="" src="@/static/image/user/logo.png" />
  26. </view>
  27. </view>
  28. <view class="code-item" @click="goCodeDetail(1)">
  29. <view class="code-illustrate">
  30. <image class="" :src="shopInfo.shopLogo" />
  31. <text>商家收款码</text>
  32. </view>
  33. <view class="code-img">
  34. <image class="" :src="payCode" />
  35. </view>
  36. <view class="code-logo">
  37. <image class="" src="@/static/image/user/logo.png" />
  38. </view>
  39. </view>
  40. <view class="code-item" @click="goCodeDetail(2)">
  41. <view class="code-illustrate">
  42. <image class="" :src="shopInfo.shopLogo" />
  43. <text>兑换专区码</text>
  44. </view>
  45. <view class="code-img">
  46. <image class="" :src="exchangeImage" />
  47. <u-qrcode
  48. ref="exchangeCode"
  49. v-show="false"
  50. canvas-id="exchangeCode"
  51. :value="exchangeText"
  52. :size="size"
  53. :options="{
  54. foreground,
  55. }"
  56. @complete="complete($event,'exchangeCode')"
  57. ></u-qrcode>
  58. <!-- <canvas canvas-id="exchangeCode"></canvas> -->
  59. </view>
  60. <view class="code-logo">
  61. <image class="" src="@/static/image/user/logo.png" />
  62. </view>
  63. </view>
  64. </view>
  65. <view class="qrcode"> </view>
  66. </view>
  67. </template>
  68. <script>
  69. // 将 dist 目录下,weapp.qrcode.esm.js 复制到项目目录中
  70. // import drawQrcode from "@/static/js/qrcode.js";
  71. import { getShopQrcode, getloadImage } from "@/config/index.js";
  72. export default {
  73. created() {
  74. this.getCode();
  75. },
  76. beforeMount() {
  77. // 获取本地存储的数据
  78. this.shopInfo = uni.getStorageSync("shopInfo");
  79. const { shopId, shopName, shopLogo } = this.shopInfo;
  80. this.shopText = `https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/shop/shop-detail?shopId=${shopId}`;
  81. this.foreground = {
  82. image: {
  83. src: shopLogo,
  84. width: 25,
  85. height: 25,
  86. align: ["center", "center"],
  87. anchor: [0, 0],
  88. },
  89. };
  90. this.exchangeText = `https://test.tuanfengkeji.cn/TFShop_Uni_H5/#/another-tf/another-user/exchange/index?shopId=${shopId}&shopName=${shopName}`;
  91. },
  92. data() {
  93. return {
  94. shopInfo: {},
  95. payCode: "",
  96. // 店铺名称
  97. shopName:"",
  98. // 店铺二维码
  99. shopText: "",
  100. // 兑换专区二维码
  101. exchangeText: "",
  102. size: 100,
  103. // 图片参数
  104. foreground: {},
  105. codeImage: "",
  106. exchangeImage: "",
  107. };
  108. },
  109. methods: {
  110. async getCode() {
  111. // 获取收款二维码
  112. let res = await getShopQrcode({ codeType: 1, state: 1 });
  113. this.payCode = res.data.shopCode;
  114. },
  115. // 生成二维码
  116. // setCode(url, id) {
  117. // drawQrcode({
  118. // width: 100,
  119. // height: 100,
  120. // canvasId: id,
  121. // // ctx: wx.createCanvasContext('myQrcode'),
  122. // text: url,
  123. // });
  124. // },
  125. goCodeDetail(type) {
  126. switch (type) {
  127. case 0:
  128. uni.setStorageSync(
  129. "codeImage",
  130. this.codeImage
  131. );
  132. break;
  133. case 1:
  134. uni.setStorageSync("codeImage", this.payCode);
  135. break;
  136. case 2:
  137. uni.setStorageSync(
  138. "codeImage",
  139. this.exchangeImage
  140. );
  141. break;
  142. }
  143. // mixin 中的跳转
  144. this.navigateTo(`/user_module/codeDetail/index?type=${type}&shopName=${this.shopInfo.shopName}`);
  145. },
  146. complete(e,val) {
  147. if (e.success) {
  148. console.log("生成成功", e);
  149. this.$refs[val].toTempFilePath({
  150. success: (res) => {
  151. if (val == "exchangeCode") {
  152. this.exchangeImage = res.tempFilePath;
  153. } else if (val == "code") {
  154. this.codeImage = res.tempFilePath;
  155. }
  156. },
  157. });
  158. } else {
  159. console.log("生成失败");
  160. }
  161. },
  162. },
  163. };
  164. </script>
  165. <style lang="scss" scoped>
  166. .merchantCode {
  167. width: 100vw;
  168. min-height: 100vh;
  169. background-color: rgb(247, 247, 247);
  170. padding-top: 10rpx;
  171. box-sizing: border-box;
  172. .code-list {
  173. width: 100%;
  174. padding: 0 32rpx;
  175. box-sizing: border-box;
  176. .code-item {
  177. width: 100%;
  178. margin-top: 32rpx;
  179. border-radius: 16rpx;
  180. height: 250rpx;
  181. position: relative;
  182. .code-illustrate {
  183. position: absolute;
  184. top: 28rpx;
  185. left: 28rpx;
  186. @include flex(center, null, 22rpx);
  187. image {
  188. width: 72rpx;
  189. height: 72rpx;
  190. border-radius: 50%;
  191. border: 4rpx solid #ffffff;
  192. }
  193. text {
  194. color: #ffffff;
  195. font-size: 28rpx;
  196. font-weight: 700;
  197. }
  198. }
  199. .code-img {
  200. position: absolute;
  201. top: 50%;
  202. transform: translateY(-50%);
  203. right: 58rpx;
  204. /* border: 6rpx solid rgba(255, 255, 255, 0.3); */
  205. image {
  206. width: 200rpx;
  207. height: 200rpx;
  208. }
  209. canvas {
  210. width: 200rpx;
  211. height: 200rpx;
  212. }
  213. }
  214. .code-logo {
  215. position: absolute;
  216. right: 0;
  217. bottom: 0;
  218. image {
  219. width: 354rpx;
  220. height: 212rpx;
  221. }
  222. }
  223. &:nth-of-type(2) {
  224. .code-img {
  225. border: 0;
  226. }
  227. }
  228. &:nth-of-type(1) {
  229. background: linear-gradient(91deg, #24c4ef 0%, #46a8f7 99%);
  230. box-shadow: 0px 0px 10px 0px rgba(68, 169, 246, 0.5);
  231. }
  232. &:nth-of-type(2) {
  233. background: linear-gradient(91deg, #fc8857 0%, #fe5225 99%);
  234. box-shadow: 0px 0px 10px 0px rgba(254, 83, 38, 0.5);
  235. }
  236. &:nth-of-type(3) {
  237. background: linear-gradient(91deg, #7adbcf 0%, #46c9a3 99%);
  238. box-shadow: 0px 0px 10px 0px rgba(71, 201, 164, 0.5);
  239. }
  240. }
  241. }
  242. }
  243. </style>