oldIndex.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <view
  3. class="codeDetail"
  4. :style="{
  5. background: colorList[idx].bgColor,
  6. boxShadow: colorList[idx].shadow,
  7. }"
  8. >
  9. <capsule :showBorder="true" bgColor="transparent">
  10. <template v-slot:top>
  11. <view class="shop-top">
  12. <view class="back-icon" @click="backClick">
  13. <tui-icon name="arrowleft" :size="36" color="#FFFFFF"></tui-icon>
  14. </view>
  15. <view class="shop-name">{{ title }}</view>
  16. </view>
  17. </template>
  18. </capsule>
  19. <view class="code-container">
  20. <view class="top-img">
  21. <image class="" :src="shopInfo.shopLogo" />
  22. </view>
  23. <view class="code-img">
  24. <image class="" :src="payCode" :show-menu-by-longpress="true" />
  25. <canvas canvas-id="code" id="code"></canvas>
  26. </view>
  27. <view class="code-text">长按保存二维码</view>
  28. </view>
  29. <view class="code-logo">
  30. <image class="" src="@/static/image/user/logo.png" />
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. // import drawQrcode from "@/static/js/qrcode.js";
  36. export default {
  37. created() {
  38. // 获取本地info
  39. this.shopInfo = uni.getStorageSync("shopInfo");
  40. },
  41. onLoad(option) {
  42. this.idx = Number(option.type);
  43. switch (this.idx) {
  44. case 0:
  45. this.title = "商家店铺码";
  46. // this.setCode(uni.getStorageSync("code"), "code");
  47. break;
  48. case 1:
  49. this.title = "商家收款码";
  50. this.payCode = uni.getStorageSync("code");
  51. break;
  52. case 2:
  53. this.title = "兑换专区码";
  54. // this.setCode(uni.getStorageSync("code"), "code");
  55. break;
  56. }
  57. },
  58. data() {
  59. return {
  60. idx: 0,
  61. title: "",
  62. shopInfo: {},
  63. colorList: [
  64. {
  65. bgColor: "linear-gradient(90deg, #24c4ef 0%, #46a8f7 100%)",
  66. shadow: "0px 0px 10px 0px rgba(68, 169, 246, 0.5)",
  67. },
  68. {
  69. bgColor: "linear-gradient(90deg, #FC8756 0%, #FE5427 100%)",
  70. shadow: "0px 0px 10px 0px rgba(68, 169, 246, 0.5)",
  71. },
  72. {
  73. bgColor: "linear-gradient(90deg, #7ADBCF 0%, #47CAA4 100%)",
  74. shadow: "0px 0px 10px 0px rgba(68, 169, 246, 0.5)",
  75. },
  76. ],
  77. payCode: "",
  78. };
  79. },
  80. methods: {
  81. // 生成二维码
  82. async setCode(url, id) {
  83. this.$loading.show("生成中...");
  84. },
  85. // 图片上传接口
  86. async getImage(file) {
  87. },
  88. backClick() {
  89. uni.navigateBack();
  90. },
  91. },
  92. // 页面卸载清除缓存
  93. onUnload() {
  94. uni.removeStorageSync("code");
  95. },
  96. };
  97. </script>
  98. <style lang="scss" scoped>
  99. .codeDetail {
  100. width: 100vw;
  101. height: 100vh;
  102. position: relative;
  103. .shop-top {
  104. width: 100%;
  105. height: 100%;
  106. position: relative;
  107. z-index: 999;
  108. @include flex(center);
  109. .back-icon {
  110. position: absolute;
  111. left: 0;
  112. top: 50%;
  113. transform: translateY(-50%);
  114. }
  115. .shop-name {
  116. color: #ffffff;
  117. }
  118. }
  119. .code-container {
  120. margin: 0 auto;
  121. margin-top: 186rpx;
  122. border-radius: 32rpx;
  123. width: 606rpx;
  124. height: 724rpx;
  125. background-color: #ffffff;
  126. position: relative;
  127. .top-img {
  128. width: 144rpx;
  129. height: 144rpx;
  130. position: absolute;
  131. left: 50%;
  132. transform: translateX(-50%);
  133. top: -72rpx;
  134. image {
  135. width: 100%;
  136. height: 100%;
  137. border-radius: 50%;
  138. border: 10rpx solid #ffffff;
  139. }
  140. }
  141. .code-img {
  142. width: 404rpx;
  143. height: 404rpx;
  144. position: absolute;
  145. top: 128rpx;
  146. left: 52%;
  147. transform: translateX(-50%);
  148. image {
  149. width: 100%;
  150. height: 100%;
  151. display: block;
  152. position: relative;
  153. z-index: 1;
  154. }
  155. canvas {
  156. width: 100%;
  157. height: 100%;
  158. z-index: -2;
  159. position: fixed;
  160. top: 1000rpx;
  161. left: 1000rpx;
  162. }
  163. }
  164. .code-text {
  165. color: #666666;
  166. font-size: 28rpx;
  167. position: absolute;
  168. bottom: 32rpx;
  169. left: 50%;
  170. transform: translateX(-50%);
  171. }
  172. }
  173. .code-logo {
  174. position: absolute;
  175. right: 0;
  176. bottom: 0;
  177. padding-bottom: constant(safe-area-inset-bottom); //兼容 IOS<11.2
  178. padding-bottom: env(safe-area-inset-bottom); //兼容 IOS>11.2
  179. image {
  180. width: 474rpx;
  181. height: 342rpx;
  182. display: block;
  183. }
  184. }
  185. }
  186. </style>