index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <template>
  2. <div class="paymentCode">
  3. <div class="paymentCode-left">
  4. <div class="paymentCode-title">商家收款码样式</div>
  5. <template v-if="canvasImg == ''">
  6. <!-- v-if="canvasImg == ''" -->
  7. <div ref="paymentCodeCanvas" id="paymentCodeCanvas">
  8. <div class="paymentCode-img" ref="businessCardCanvas" id="businessCardCanvas">
  9. <div class="paymentCode-img-title">扫码消费有补贴</div>
  10. <div class="img-box">
  11. <img :src="codeInfo.shopCode" alt="">
  12. </div>
  13. <div class="img-button">{{ codeInfo.shopName }}</div>
  14. </div>
  15. </div>
  16. </template>
  17. <template v-else>
  18. <div class="paymentCode-img-box">
  19. <el-image style="width: 463px; height: 595px" :src="canvasImg" :preview-src-list="srcList">
  20. </el-image>
  21. </div>
  22. </template>
  23. <div class="paymentCode-open">
  24. <div class="open-icon">
  25. <img src="@/assets/images/scan.png" alt="">
  26. </div>
  27. <div class="open-text">打开微信扫一扫可付款</div>
  28. </div>
  29. <div class="paymentCode-btn" @click="downloadCode">下载收款码</div>
  30. </div>
  31. <div class="paymentCode-right">
  32. <div class="paymentCode-explain">
  33. <div class="explain-title">商家收款码使用说明</div>
  34. <div class="explain-text">商家收款码仅限已入驻团蜂平台的商家使用,请勿向他人出租商家收款码,否则可能被他人用于违法犯罪活动。</div>
  35. </div>
  36. <div class="paymentCode-mode">
  37. <div class="mode-title">支持支付方式</div>
  38. <div class="mode-list">
  39. <div class="mode-item" v-for="(item, index) in payList" :key="index">
  40. <div class="img">
  41. <img class="" :src="item.url" />
  42. </div>
  43. <div class="text">{{ item.text }}</div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </template>
  50. <script>
  51. import { getQrcode } from "@/api/shop"
  52. import html2canvas from 'html2canvas'
  53. export default {
  54. created() {
  55. this.generateCode()
  56. // 本地拿到商家名称
  57. this.codeInfo.roleName = localStorage.getItem('roleName')
  58. },
  59. data() {
  60. return {
  61. codeInfo: {},
  62. canvasImg: '',
  63. srcList: [],
  64. // 支持支付方式数据
  65. payList: [
  66. {
  67. url: require('@/assets/images/mode-img/1.png'),
  68. text: '团蜂佣金'
  69. },
  70. {
  71. url: require('@/assets/images/mode-img/2.png'),
  72. text: '团蜂代金券'
  73. },
  74. {
  75. url: require('@/assets/images/mode-img/3.png'),
  76. text: '建行支付'
  77. },
  78. {
  79. url: require('@/assets/images/mode-img/4.png'),
  80. text: '团蜂交易金'
  81. },
  82. {
  83. url: require('@/assets/images/mode-img/5.png'),
  84. text: '微信支付'
  85. },
  86. {
  87. url: require('@/assets/images/mode-img/6.png'),
  88. text: '支付宝'
  89. },
  90. ],
  91. }
  92. },
  93. updated() {
  94. this.generateImage()
  95. },
  96. methods: {
  97. async generateCode() {
  98. const res = await getQrcode({ codeType: 1, state: 1 })
  99. this.codeInfo = res.data
  100. },
  101. generateImage() {
  102. html2canvas(this.$refs.paymentCodeCanvas, {
  103. dpi: 300,
  104. useCORS: true,
  105. allowTaint: true,
  106. logging: false,
  107. scale: 1,
  108. windowHeight: this.$refs.businessCardCanvas?.offsetHeight,
  109. width: this.$refs.businessCardCanvas?.offsetWidth,
  110. height: this.$refs.businessCardCanvas?.offsetHeight
  111. }).then((canvas) => {
  112. this.canvasImg = canvas.toDataURL('image/png');
  113. // console.log(this.canvasImg);
  114. this.srcList.push(this.canvasImg)
  115. }).catch(() => {
  116. console.log("生成图片错误");
  117. });
  118. },
  119. downloadCode() {
  120. this.$confirm('您确定需要下载商家二维码吗?', '提示', {
  121. confirmButtonText: '确定',
  122. cancelButtonText: '取消',
  123. type: 'warning'
  124. }).then(() => {
  125. this.setImgSize(463, 595)
  126. }).catch(() => {
  127. this.$message({
  128. type: 'info',
  129. message: '取消下载成功'
  130. });
  131. });
  132. },
  133. // 设置图片大小
  134. setImgSize(width, height) {
  135. const canvas = document.createElement('canvas')
  136. const ctx = canvas.getContext('2d')
  137. // 设置canvas尺寸
  138. canvas.width = width
  139. canvas.height = height
  140. // 绘制图片到canvas上
  141. const img = new Image()
  142. img.src = this.canvasImg
  143. img.onload = () => {
  144. ctx.drawImage(img, 0, 0, canvas.width, canvas.height)
  145. // 将canvas内容转换为base64格式的图片数据
  146. const imageData = canvas.toDataURL('image/png')
  147. // 创建下载链接并设置文件名
  148. const filename = `${this.codeInfo.shopName}的商家收款码.png`
  149. const link = document.createElement('a')
  150. link.href = imageData
  151. link.download = filename
  152. // 将下载链接添加到页面并点击下载
  153. document.body.appendChild(link)
  154. link.click()
  155. document.body.removeChild(link)
  156. }
  157. },
  158. }
  159. }
  160. </script>
  161. <style lang="scss" scoped>
  162. * {
  163. margin: 0;
  164. padding: 0;
  165. }
  166. img {
  167. margin: 0;
  168. padding: 0;
  169. }
  170. .paymentCode {
  171. display: flex;
  172. justify-content: center;
  173. gap: 117px;
  174. padding-top: 50px;
  175. .paymentCode-left {
  176. display: flex;
  177. align-items: center;
  178. justify-content: center;
  179. flex-direction: column;
  180. .paymentCode-title {
  181. font-size: 28px;
  182. color: #000;
  183. font-weight: 500;
  184. margin-bottom: 20px;
  185. }
  186. .paymentCode-img {
  187. width: 463px;
  188. height: 595px;
  189. display: flex;
  190. flex-direction: column;
  191. align-items: center;
  192. background-color: #EF530E;
  193. border-radius: 10px;
  194. position: relative;
  195. .paymentCode-img-title {
  196. display: block !important;
  197. width: 100%;
  198. height: 76px !important;
  199. color: #fff !important;
  200. font-size: 50px !important;
  201. margin: 32px 0 24px !important;
  202. font-weight: 700 !important;
  203. font-style: italic !important;
  204. box-sizing: border-box;
  205. text-align: center;
  206. line-height: 76px;
  207. }
  208. .img-box {
  209. width: 300px;
  210. height: 300px;
  211. img {
  212. width: 100% !important;
  213. height: 100% !important;
  214. }
  215. }
  216. .img-button {
  217. width: 100% !important;
  218. height: 88px !important;
  219. background-color: #fff;
  220. position: absolute;
  221. left: 0;
  222. bottom: 0;
  223. border-radius: 0 0 9px 9px !important;
  224. text-align: center !important;
  225. line-height: 88px !important;
  226. font-size: 24px !important;
  227. }
  228. }
  229. .paymentCode-img-box {
  230. width: 463px;
  231. height: 595px;
  232. img {
  233. width: 100% !important;
  234. height: 100% !important;
  235. }
  236. }
  237. .paymentCode-open {
  238. display: flex;
  239. align-items: center;
  240. gap: 20px;
  241. margin-top: 30px;
  242. .open-icon {
  243. width: 50px;
  244. height: 50px;
  245. img {
  246. width: 100% !important;
  247. height: 100% !important;
  248. }
  249. }
  250. .open-text {
  251. font-size: 28px;
  252. color: #3D3D3D;
  253. }
  254. }
  255. .paymentCode-btn {
  256. width: 315px;
  257. height: 67px;
  258. background-color: #EF530E;
  259. color: #fff;
  260. border-radius: 10px;
  261. text-align: center;
  262. line-height: 67px;
  263. margin-top: 32px;
  264. font-size: 28px;
  265. cursor: pointer;
  266. }
  267. }
  268. .paymentCode-right {
  269. width: 846px;
  270. padding-top: 65px;
  271. .paymentCode-explain {
  272. width: 100%;
  273. height: 271px;
  274. padding: 22px 47px 40px 65px;
  275. box-sizing: border-box;
  276. background-color: #fff;
  277. .explain-title {
  278. margin-bottom: 33px;
  279. font-size: 30px;
  280. color: #000;
  281. font-weight: 600;
  282. text-align: center;
  283. }
  284. .explain-text {
  285. font-size: 28px;
  286. color: #000000;
  287. }
  288. }
  289. .paymentCode-mode {
  290. margin-top: 53px;
  291. padding: 22px 24px 44px;
  292. padding-right: 0;
  293. height: 271px;
  294. width: 100%;
  295. box-sizing: border-box;
  296. background-color: #fff;
  297. .mode-title {
  298. margin-bottom: 33px;
  299. font-size: 30px;
  300. color: #000;
  301. font-weight: 600;
  302. text-align: center;
  303. }
  304. .mode-list {
  305. display: flex;
  306. flex-wrap: wrap;
  307. align-items: center;
  308. justify-content: space-between;
  309. .mode-item {
  310. width: calc(100% / 3);
  311. height: 50px;
  312. padding: 3px 0;
  313. display: flex;
  314. align-items: center;
  315. gap: 8px;
  316. margin-top: 31px;
  317. box-sizing: border-box;
  318. .img {
  319. img {
  320. width: 50px !important;
  321. height: 50px !important;
  322. }
  323. }
  324. .text {
  325. font-size: 28px;
  326. color: #000000;
  327. }
  328. }
  329. }
  330. }
  331. }
  332. }
  333. </style>