index.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <view class="codeDetail">
  3. <capsule :showBorder="true" bgColor="#FFFFFF">
  4. <template v-slot:top>
  5. <view class="detail-top">
  6. <view class="back-icon" @click="backClick">
  7. <tui-icon name="arrowleft" :size="32" color="#000"></tui-icon>
  8. </view>
  9. <view class="shop-name">{{ title }}</view>
  10. </view>
  11. </template>
  12. </capsule>
  13. <view class="seize"></view>
  14. <view class="container">
  15. <view class="code-image" :style="{ display: isShow ? 'block' : 'none' }">
  16. <l-painter ref="painter">
  17. <l-painter-view css="width:100%;backgroundColor: #FFFFFF;opacity:0;">
  18. <l-painter-view
  19. css="height:908rpx;width:100%;background:#EF530E;borderRadius:32rpx;position:relative;"
  20. >
  21. <l-painter-text
  22. :text="textCode"
  23. css="width:100%;textAlign:center;marginTop:48rpx;fontSize:40rpx;color:#FFFFFF;fontStyle:italic;fontWeight:500;"
  24. ></l-painter-text>
  25. <l-painter-text
  26. :text="textBig"
  27. css="width:100%;textAlign:center;marginTop:16rpx;fontSize:64rpx;color:#FFFFFF;fontStyle:italic;fontWeight:700;"
  28. ></l-painter-text>
  29. <l-painter-image
  30. :src="codeImage"
  31. css="width:440rpx;height:440rpx;margin:0 auto;marginTop:40rpx;"
  32. ></l-painter-image>
  33. <!-- <l-painter-text text="扫码消费有补贴" css="width:100%;position:absolute;left:0;"></l-painter-text> -->
  34. <l-painter-text
  35. :text="shopName"
  36. css="width:100%;height:128rpx;position: absolute;left: 0;bottom: 0;background:#FFFFFF;textAlign:center;color:#3D3D3D;fontSize:32rpx;borderRadius:0 0 32rpx 32rpx;"
  37. ></l-painter-text>
  38. </l-painter-view>
  39. </l-painter-view>
  40. </l-painter>
  41. </view>
  42. <image
  43. class="img-box"
  44. :style="{ display: !isShow ? 'block' : 'none' }"
  45. :src="filePath"
  46. :show-menu-by-longpress="true"
  47. />
  48. <view class="text">打开微信扫一扫可付款</view>
  49. <view class="btn" @click="saveCode">{{ textBtn }}</view>
  50. </view>
  51. <view class="illustrate" v-if="idx == 1">
  52. <view class="illustrate-box" @click="popupChange(1)">
  53. <tui-icon name="about" color="#EF530E" :size="18"></tui-icon>
  54. <text>商家收款码使用说明</text>
  55. </view>
  56. <view class="illustrate-box" @click="popupChange(2)">
  57. <tui-icon name="about" color="#EF530E" :size="18"></tui-icon>
  58. <text>支持支付方式</text>
  59. </view>
  60. </view>
  61. <tui-bottom-popup backgroundColor="#FFFFFF" :show="popupShow">
  62. <view class="use-illustrate" v-show="popopIdx == 1">
  63. <view class="use-title">商家收款码使用说明</view>
  64. <view class="use-text">
  65. 商家收款码仅限入驻团蜂平台的商家使用,请勿向他人出租商家收款码,否则可能被他人用于违法犯罪活动。
  66. </view>
  67. <view class="use-btn" @click="closePopup">好的</view>
  68. </view>
  69. <view class="pay-way" v-show="popopIdx == 2">
  70. <view class="pay-title">支持支付方式</view>
  71. <view class="pay-more">
  72. <view class="more-box">
  73. <image src="@/static/image/user/pay_1.png" />
  74. <text>团蜂佣金</text>
  75. </view>
  76. <view class="more-box">
  77. <image src="@/static/image/user/pay_2.png" />
  78. <text>团蜂代金券</text>
  79. </view>
  80. <view class="more-box">
  81. <image src="@/static/image/user/pay_3.png" />
  82. <text>建行支付</text>
  83. </view>
  84. <view class="more-box">
  85. <image src="@/static/image/user/pay_4.png" />
  86. <text>团蜂消费金</text>
  87. </view>
  88. <view class="more-box">
  89. <image src="@/static/image/user/pay_5.png" />
  90. <text>微信支付</text>
  91. </view>
  92. <view class="more-box">
  93. <image src="@/static/image/user/pay_6.png" />
  94. <text>支付宝</text>
  95. </view>
  96. </view>
  97. <view class="pay-btn" @click="closePopup">好的</view>
  98. </view>
  99. </tui-bottom-popup>
  100. </view>
  101. </template>
  102. <script>
  103. export default {
  104. onLoad(option) {
  105. this.idx = Number(option.type);
  106. console.log(option);
  107. this.shopName = option.shopName;
  108. // console.log(option);
  109. switch (this.idx) {
  110. case 0:
  111. this.title = "商家店铺码";
  112. this.textBtn = "下载店铺码";
  113. break;
  114. case 1:
  115. this.title = "商家收款码";
  116. break;
  117. case 2:
  118. this.title = "兑换专区码";
  119. this.textCode = "兑换专区";
  120. this.textBig = "扫码兑换商品";
  121. this.textBtn = "下载兑换二维码";
  122. break;
  123. }
  124. this.codeImage = uni.getStorageSync("codeImage");
  125. this.$loading.show("生成中...");
  126. // console.log(this.codeImage);
  127. },
  128. mounted() {
  129. this.$refs.painter.canvasToTempFilePathSync({
  130. fileType: "jpg",
  131. // 如果返回的是base64是无法使用 saveImageToPhotosAlbum,需要设置 pathType为url
  132. pathType: "url",
  133. quality: 1,
  134. success: (res) => {
  135. this.$loading.hide();
  136. this.filePath = res.tempFilePath;
  137. this.isShow = false;
  138. },
  139. });
  140. },
  141. data() {
  142. return {
  143. // 控制盒子显示隐藏
  144. isShow: true,
  145. // 店铺名称
  146. shopName: "",
  147. // 传递的第几个码
  148. idx: 0,
  149. // 头部 title
  150. title: "",
  151. // 二维码图片
  152. codeImage: "",
  153. filePath: null,
  154. textCode: "团蜂同城生活",
  155. textBig: "扫码消费有补贴",
  156. textBtn: "下载收款码",
  157. // 控制弹框
  158. popupShow: false,
  159. popopIdx:1,
  160. };
  161. },
  162. methods: {
  163. // 下载收款码
  164. saveCode() {
  165. uni.saveImageToPhotosAlbum({
  166. filePath: this.filePath,
  167. success: function() {
  168. console.log("save success");
  169. },
  170. });
  171. },
  172. // 点击弹框
  173. popupChange(val){
  174. this.popupShow = true;
  175. this.popopIdx = val
  176. console.log(this.popopIdx);
  177. },
  178. // 关闭弹框
  179. closePopup(){
  180. this.popupShow = false
  181. },
  182. backClick() {
  183. uni.navigateBack();
  184. },
  185. },
  186. // 页面卸载清除缓存
  187. onUnload() {
  188. uni.removeStorageSync("codeImage");
  189. },
  190. };
  191. </script>
  192. <style lang="scss" scoped>
  193. @import "./index.scss";
  194. </style>