steward.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. const util = require('../../../../utils/util.js');
  2. const api = require('../../../../config/api.js');
  3. const app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. shareImage:'',
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad: function (options) {
  15. this.setData({
  16. shareImage:app.globalData.shareImage
  17. })
  18. },
  19. saveImage(){
  20. wx.showLoading({
  21. title: '图片保存中',
  22. });
  23. wx.downloadFile({
  24. url: this.data.shareImage,
  25. timeout:3000,
  26. success: function(res) {
  27. wx.hideLoading();
  28. wx.saveImageToPhotosAlbum({
  29. filePath:res.tempFilePath,
  30. success(res){
  31. wx.showToast({
  32. title: '二维码图片已保存到您的相册',
  33. icon: 'none',
  34. duration: 2000
  35. });
  36. },
  37. fail(res){
  38. wx.hideLoading();
  39. wx.showToast({
  40. title: '网络或授权问题 图片保存失败 请重试',
  41. icon: 'none',
  42. duration: 2000
  43. })
  44. }
  45. })
  46. },
  47. fail:function(){
  48. wx.hideLoading();
  49. },
  50. });
  51. },
  52. /**
  53. * 生命周期函数--监听页面初次渲染完成
  54. */
  55. onReady: function () {
  56. },
  57. /**
  58. * 生命周期函数--监听页面显示
  59. */
  60. onShow: function () {
  61. },
  62. /**
  63. * 生命周期函数--监听页面隐藏
  64. */
  65. onHide: function () {
  66. },
  67. /**
  68. * 生命周期函数--监听页面卸载
  69. */
  70. onUnload: function () {
  71. },
  72. /**
  73. * 页面相关事件处理函数--监听用户下拉动作
  74. */
  75. onPullDownRefresh: function () {
  76. },
  77. /**
  78. * 页面上拉触底事件的处理函数
  79. */
  80. onReachBottom: function () {
  81. },
  82. /**
  83. * 用户点击右上角分享
  84. */
  85. onShareAppMessage: function () {
  86. }
  87. })