ay-qrcode.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. <template>
  2. <view :class="modal?'show-qrcode':'hide-qrcode'">
  3. <view class="box-qrcode" :style="{'margin-left': marginLeft + 'px'}" @longtap="longtapCode">
  4. <!-- style="width: 550rpx;height: 550rpx;" -->
  5. <canvas class="canvas-qrcode" :style="style_w_h" :canvas-id="qrcode_id">
  6. <!-- #ifndef MP -->
  7. <view v-if="modal&&is_themeImg" :style="style_w_h" class="box-img-qrcode">
  8. <image :style="style_w_h_img" mode="scaleToFill" :src="themeImg"></image>
  9. </view>
  10. <!-- #endif -->
  11. </canvas>
  12. <!-- <image mode="scaleToFill" :src="imagePath"></image> -->
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. var qr_we = require("./qrcode_wx.js");
  18. const qrCode = require('./weapp-qrcode.js')
  19. export default {
  20. data() {
  21. return {
  22. isAndroid : false ,
  23. show: true,
  24. imagePath: '',
  25. // qrcode_id: 'qrcode_id',
  26. marginLeft: 0,
  27. //一般的安卓app只需加30就能显示全
  28. //苹果app的不加就能显示全,加了就要弄margin-left
  29. //有些安卓app显示不全
  30. add_num : 30 ,
  31. add_num_key : 'rectify_code_key',
  32. }
  33. },
  34. props: {
  35. modal: {
  36. type: Boolean,
  37. default: false
  38. },
  39. url: {
  40. type: String,
  41. default: ''
  42. },
  43. height: {
  44. type: Number,
  45. default: 260
  46. },
  47. width: {
  48. type: Number,
  49. default: 260
  50. },
  51. themeColor: {
  52. type: String,
  53. default: '#333333',
  54. },
  55. qrcode_id: {
  56. type: String,
  57. default: 'qrcode_id',
  58. },
  59. is_themeImg: {
  60. type: Boolean,
  61. default: false,
  62. },
  63. themeImg: {
  64. type: String,
  65. default: 'https://cdn.pixabay.com/photo/2016/11/29/13/24/balloons-1869816__340.jpg',
  66. },
  67. h_w_img: {
  68. type: Number,
  69. default: 30
  70. },
  71. },
  72. watch:{
  73. },
  74. computed: {
  75. style_w_h() {
  76. return this.set_style_w_h();
  77. },
  78. style_w_h_img() {
  79. let that = this;
  80. var height = parseInt(that.h_w_img);
  81. var width = parseInt(that.h_w_img);
  82. var style = '';
  83. if (height > 0) {
  84. style = `height:${height*2}rpx;`;
  85. }
  86. if (width > 0) {
  87. style += `width:${width*2}rpx;z-index: 2;`;
  88. }
  89. return style;
  90. },
  91. },
  92. created: function() {
  93. let that = this;
  94. try {
  95. //app苹果二维码不居中
  96. //#ifndef MP
  97. let isAndroid = false ;
  98. const res = uni.getSystemInfoSync();
  99. if(res.platform == 'android'){
  100. isAndroid = true ;
  101. }else{
  102. isAndroid = false ;
  103. }
  104. if (!isAndroid) {
  105. that.marginLeft = 46;
  106. }
  107. that.isAndroid = isAndroid ;
  108. try {
  109. const add_num = uni.getStorageSync(that.add_num_key);
  110. if (add_num) {
  111. that.add_num = add_num;
  112. }
  113. } catch (e) {
  114. // error
  115. }
  116. // #endif
  117. } catch (e) {
  118. // error
  119. }
  120. //#ifdef MP
  121. //that.marginLeft = 40;
  122. // #endif
  123. },
  124. methods: {
  125. set_style_w_h(){
  126. let that = this;
  127. var height = parseInt(that.height);
  128. var width = parseInt(that.width);
  129. var style = '';
  130. var height = height*2 ;
  131. var width = width*2 ;
  132. //#ifndef MP
  133. var add = that.add_num ;
  134. height += add;
  135. width += add;
  136. // #endif
  137. if (height > 0) {
  138. style = `height:${height}rpx;`;
  139. }
  140. if (width > 0) {
  141. style += `width:${width}rpx;`;
  142. }
  143. return style;
  144. },
  145. hideQrcode() {
  146. this.$emit("hideQrcode")
  147. },
  148. // 二维码生成工具
  149. crtQrCode() {
  150. let that = this;
  151. //#ifndef MP
  152. new qrCode(that.qrcode_id, {
  153. text: this.url,
  154. width: that.width,
  155. height: that.height,
  156. colorDark: that.themeColor,//#333333
  157. colorLight: "#FFFFFF",
  158. correctLevel: qrCode.CorrectLevel.H,
  159. })
  160. // #endif
  161. //#ifdef MP
  162. that.createQrCode(this.url, that.qrcode_id, that.width, that.height,that.themeColor,that.is_themeImg,that.themeImg,that.h_w_img);
  163. // #endif
  164. //that.createQrCode(this.url, that.qrcode_id, that.width, that.height);
  165. },
  166. //#ifdef MP
  167. createQrCode: function(url, canvasId, cavW, cavH,cavColor,haveImg,imgurl,imgsize) {
  168. //调用插件中的draw方法,绘制二维码图片
  169. qr_we.api.draw(url, canvasId, cavW, cavH,cavColor,haveImg,imgurl,imgsize, this, this.canvasToTempImage);
  170. // setTimeout(() => { this.canvasToTempImage();},100);
  171. },
  172. // #endif
  173. //获取临时缓存照片路径,存入data中
  174. canvasToTempImage: function() {
  175. var that = this;
  176. },
  177. saveImage: function() {
  178. var that = this;
  179. uni.canvasToTempFilePath({
  180. canvasId: that.qrcode_id,
  181. success: function(res) {
  182. var tempFilePath = res.tempFilePath;
  183. console.log(tempFilePath);
  184. that.imagePath = tempFilePath;
  185. //保存到相册
  186. // uni.saveFile({
  187. // tempFilePath: tempFilePath,
  188. // success: function (res2) {
  189. // var savedFilePath = res2.savedFilePath;
  190. // }
  191. // });
  192. uni.saveImageToPhotosAlbum({
  193. filePath : tempFilePath ,
  194. success: function (res3) {
  195. uni.showModal({
  196. title: '提示',
  197. content: '保存成功',
  198. confirmText: '确定',
  199. showCancel: false,
  200. confirmColor: '#33CCCC',
  201. success(res4) {
  202. }
  203. })
  204. },
  205. });
  206. },
  207. fail: function(res) {
  208. console.log(res);
  209. }
  210. }, that);
  211. },
  212. //微信小程序支持:长按二维码,提示是否保存相册
  213. //安卓APP长按校正二维码
  214. longtapCode(){
  215. var that = this;
  216. //#ifndef MP
  217. uni.showModal({
  218. title: '校正二维码',
  219. content: '二维码是否异常',
  220. confirmText: '确定',
  221. confirmColor: '#33CCCC',
  222. success(res) {
  223. if (res.confirm) {
  224. that.rectify_code();
  225. }
  226. }
  227. })
  228. // #endif
  229. //#ifdef MP-WEIXIN
  230. uni.showModal({
  231. title: '提示',
  232. content: '是否保存到相册',
  233. confirmText: '确定',
  234. confirmColor: '#33CCCC',
  235. success(res) {
  236. if (res.confirm) {
  237. that.saveImage();
  238. }
  239. }
  240. })
  241. // #endif
  242. },
  243. //安卓有些手机不正常,长按可选择矫正
  244. rectify_code(){
  245. var that = this;
  246. let add_num = that.add_num ;
  247. add_num += 30 ;
  248. that.add_num = add_num;
  249. that.crtQrCode();//重新生成才会立即覆盖
  250. try {
  251. //第一次长按校正设置了就不用在设置
  252. uni.setStorage({
  253. key: that.add_num_key,
  254. data: add_num,
  255. success: function() {
  256. }
  257. });
  258. } catch (e) {
  259. // error
  260. }
  261. },
  262. },
  263. mounted() {}
  264. }
  265. </script>
  266. <style scoped lang="scss">
  267. // .qrcode-box {
  268. // position: fixed;
  269. // left: 0;
  270. // top: 0;
  271. // right: 0;
  272. // bottom: 0;
  273. // height: 100vh;
  274. // width: 100vw;
  275. // background-color: rgba(59, 59, 59, 0.6);
  276. // // opacity: 0.8;
  277. // text-align: center;
  278. // display: flex;
  279. // align-items: center;
  280. // display: none;
  281. // .qrcode-item {
  282. // flex: 1;
  283. // position: relative;
  284. // text-align: center;
  285. // .item-box {
  286. // width: 90%;
  287. // margin: auto;
  288. // display: inline-block;
  289. // margin-top: 30%;
  290. // padding-bottom: 30rpx;
  291. // // animation: show 0.7s;
  292. // .title {
  293. // font-size: 46rpx;
  294. // text-align: center;
  295. // margin-bottom: 24rpx;
  296. // }
  297. // .canvas {
  298. // margin: auto;
  299. // display: inline-block;
  300. // margin: auto;
  301. // }
  302. // background-color: #FFFFFF;
  303. // }
  304. // }
  305. // }
  306. .box-qrcode{
  307. text-align: center;
  308. position: relative;
  309. .box-img-qrcode{
  310. position: absolute;
  311. display: flex;
  312. flex-direction: column;
  313. justify-content: center;
  314. align-items: center;
  315. z-index: 2;
  316. }
  317. }
  318. image{
  319. width: 60upx;
  320. height: 60upx;
  321. border-radius: 50%;
  322. }
  323. .canvas-qrcode {
  324. margin: auto;
  325. display: inline-block;
  326. float: left;
  327. }
  328. .opacity-qrcode {
  329. opacity: 0;
  330. display: block;
  331. }
  332. .show-qrcode {
  333. display: block;
  334. animation: fade 0.7s;
  335. // -moz-animation: fade 0.5s; /* Firefox */
  336. // -webkit-animation: fade 0.5s; /* Safari 和 Chrome */
  337. // -o-animation: fade 0.5s;
  338. }
  339. .hide-qrcode {
  340. animation: hide 0.7s;
  341. }
  342. @keyframes fade {
  343. from {
  344. opacity: 0.8;
  345. }
  346. to {
  347. opacity: 1;
  348. }
  349. }
  350. @keyframes hide {
  351. from {
  352. opacity: 1;
  353. }
  354. to {
  355. opacity: 0;
  356. }
  357. }
  358. </style>