ay-qrcode.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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. that.marginLeft = 0;
  107. }
  108. that.isAndroid = isAndroid ;
  109. try {
  110. const add_num = uni.getStorageSync(that.add_num_key);
  111. if (add_num) {
  112. that.add_num = add_num;
  113. }
  114. } catch (e) {
  115. // error
  116. }
  117. // #endif
  118. } catch (e) {
  119. // error
  120. }
  121. //#ifdef MP
  122. //that.marginLeft = 40;
  123. // #endif
  124. },
  125. methods: {
  126. set_style_w_h(){
  127. let that = this;
  128. var height = parseInt(that.height);
  129. var width = parseInt(that.width);
  130. var style = '';
  131. var height = height*2 ;
  132. var width = width*2 ;
  133. //#ifndef MP
  134. var add = that.add_num ;
  135. height += add;
  136. width += add;
  137. // #endif
  138. if (height > 0) {
  139. style = `height:${height}rpx;`;
  140. }
  141. if (width > 0) {
  142. style += `width:${width}rpx;`;
  143. }
  144. return style;
  145. },
  146. hideQrcode() {
  147. this.$emit("hideQrcode")
  148. },
  149. // 二维码生成工具
  150. crtQrCode() {
  151. let that = this;
  152. //#ifndef MP
  153. new qrCode(that.qrcode_id, {
  154. text: this.url,
  155. width: that.width,
  156. height: that.height,
  157. colorDark: that.themeColor,//#333333
  158. colorLight: "#FFFFFF",
  159. correctLevel: qrCode.CorrectLevel.H,
  160. })
  161. // #endif
  162. //#ifdef MP
  163. that.createQrCode(this.url, that.qrcode_id, that.width, that.height,that.themeColor,that.is_themeImg,that.themeImg,that.h_w_img);
  164. // #endif
  165. //that.createQrCode(this.url, that.qrcode_id, that.width, that.height);
  166. },
  167. //#ifdef MP
  168. createQrCode: function(url, canvasId, cavW, cavH,cavColor,haveImg,imgurl,imgsize) {
  169. //调用插件中的draw方法,绘制二维码图片
  170. qr_we.api.draw(url, canvasId, cavW, cavH,cavColor,haveImg,imgurl,imgsize, this, this.canvasToTempImage);
  171. // setTimeout(() => { this.canvasToTempImage();},100);
  172. },
  173. // #endif
  174. //获取临时缓存照片路径,存入data中
  175. canvasToTempImage: function() {
  176. var that = this;
  177. },
  178. saveImage: function() {
  179. var that = this;
  180. uni.canvasToTempFilePath({
  181. canvasId: that.qrcode_id,
  182. success: function(res) {
  183. var tempFilePath = res.tempFilePath;
  184. console.log(tempFilePath);
  185. that.imagePath = tempFilePath;
  186. //保存到相册
  187. // uni.saveFile({
  188. // tempFilePath: tempFilePath,
  189. // success: function (res2) {
  190. // var savedFilePath = res2.savedFilePath;
  191. // }
  192. // });
  193. uni.saveImageToPhotosAlbum({
  194. filePath : tempFilePath ,
  195. success: function (res3) {
  196. uni.showModal({
  197. title: '提示',
  198. content: '保存成功',
  199. confirmText: '确定',
  200. showCancel: false,
  201. confirmColor: '#33CCCC',
  202. success(res4) {
  203. }
  204. })
  205. },
  206. });
  207. },
  208. fail: function(res) {
  209. console.log(res);
  210. }
  211. }, that);
  212. },
  213. //微信小程序支持:长按二维码,提示是否保存相册
  214. //安卓APP长按校正二维码
  215. longtapCode(){
  216. var that = this;
  217. //#ifndef MP
  218. uni.showModal({
  219. title: '校正二维码',
  220. content: '二维码是否异常',
  221. confirmText: '确定',
  222. confirmColor: '#33CCCC',
  223. success(res) {
  224. if (res.confirm) {
  225. that.rectify_code();
  226. }
  227. }
  228. })
  229. // #endif
  230. //#ifdef MP-WEIXIN
  231. uni.showModal({
  232. title: '提示',
  233. content: '是否保存到相册',
  234. confirmText: '确定',
  235. confirmColor: '#33CCCC',
  236. success(res) {
  237. if (res.confirm) {
  238. that.saveImage();
  239. }
  240. }
  241. })
  242. // #endif
  243. },
  244. //安卓有些手机不正常,长按可选择矫正
  245. rectify_code(){
  246. var that = this;
  247. let add_num = that.add_num ;
  248. add_num += 30 ;
  249. that.add_num = add_num;
  250. that.crtQrCode();//重新生成才会立即覆盖
  251. try {
  252. //第一次长按校正设置了就不用在设置
  253. uni.setStorage({
  254. key: that.add_num_key,
  255. data: add_num,
  256. success: function() {
  257. }
  258. });
  259. } catch (e) {
  260. // error
  261. }
  262. },
  263. },
  264. mounted() {}
  265. }
  266. </script>
  267. <style scoped lang="scss">
  268. // .qrcode-box {
  269. // position: fixed;
  270. // left: 0;
  271. // top: 0;
  272. // right: 0;
  273. // bottom: 0;
  274. // height: 100vh;
  275. // width: 100vw;
  276. // background-color: rgba(59, 59, 59, 0.6);
  277. // // opacity: 0.8;
  278. // text-align: center;
  279. // display: flex;
  280. // align-items: center;
  281. // display: none;
  282. // .qrcode-item {
  283. // flex: 1;
  284. // position: relative;
  285. // text-align: center;
  286. // .item-box {
  287. // width: 90%;
  288. // margin: auto;
  289. // display: inline-block;
  290. // margin-top: 30%;
  291. // padding-bottom: 30rpx;
  292. // // animation: show 0.7s;
  293. // .title {
  294. // font-size: 46rpx;
  295. // text-align: center;
  296. // margin-bottom: 24rpx;
  297. // }
  298. // .canvas {
  299. // margin: auto;
  300. // display: inline-block;
  301. // margin: auto;
  302. // }
  303. // background-color: #FFFFFF;
  304. // }
  305. // }
  306. // }
  307. .box-qrcode{
  308. text-align: center;
  309. position: relative;
  310. .box-img-qrcode{
  311. position: absolute;
  312. display: flex;
  313. flex-direction: column;
  314. justify-content: center;
  315. align-items: center;
  316. z-index: 2;
  317. }
  318. }
  319. image{
  320. width: 60upx;
  321. height: 60upx;
  322. border-radius: 50%;
  323. }
  324. .canvas-qrcode {
  325. margin: auto;
  326. display: inline-block;
  327. float: left;
  328. }
  329. .opacity-qrcode {
  330. opacity: 0;
  331. display: block;
  332. }
  333. .show-qrcode {
  334. display: block;
  335. animation: fade 0.7s;
  336. // -moz-animation: fade 0.5s; /* Firefox */
  337. // -webkit-animation: fade 0.5s; /* Safari 和 Chrome */
  338. // -o-animation: fade 0.5s;
  339. }
  340. .hide-qrcode {
  341. animation: hide 0.7s;
  342. }
  343. @keyframes fade {
  344. from {
  345. opacity: 0.8;
  346. }
  347. to {
  348. opacity: 1;
  349. }
  350. }
  351. @keyframes hide {
  352. from {
  353. opacity: 1;
  354. }
  355. to {
  356. opacity: 0;
  357. }
  358. }
  359. </style>