sharetofirend.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. // pages/sharetofirend/sharetofirend.js
  2. const app = getApp();
  3. const api = require('../../api/api');
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. navbarData: {
  10. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  11. title: '分享朋友圈', //导航栏 中间的标题,
  12. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  13. },
  14. news: [
  15. '生鲜', '教育', '熟食', '生鲜', '甜点糕点', '生活用品', '教育'
  16. ],
  17. type: 0, //进入类型(0:团长详情-分享到朋友圈;1:拼团详情-分享到朋友圈)
  18. id: 0, //团长id;拼团id
  19. user_info: {}, //用户信息
  20. classification_info: [], //商品分类
  21. info: {},
  22. pintuan_detail: {}, //拼团详情
  23. },
  24. /**
  25. * 生命周期函数--监听页面加载
  26. */
  27. onLoad(options) {
  28. let that = this;
  29. that.setData({
  30. type: Number(options.type),
  31. id: Number(options.id)
  32. })
  33. if (that.data.type == 0) {
  34. // 获取团长详情
  35. that.getHead_info();
  36. } else if (that.data.type == 1) {
  37. // 获取拼团详情分享二维码
  38. that.getCode_gang();
  39. }
  40. },
  41. /**
  42. * 生命周期函数--监听页面初次渲染完成
  43. */
  44. onReady() {
  45. },
  46. /**
  47. * 生命周期函数--监听页面显示
  48. */
  49. onShow() {
  50. },
  51. /**
  52. * 生命周期函数--监听页面隐藏
  53. */
  54. onHide() {
  55. },
  56. /**
  57. * 生命周期函数--监听页面卸载
  58. */
  59. onUnload() {
  60. },
  61. /**
  62. * 页面相关事件处理函数--监听用户下拉动作
  63. */
  64. onPullDownRefresh() {
  65. },
  66. /**
  67. * 页面上拉触底事件的处理函数
  68. */
  69. onReachBottom() {
  70. },
  71. /**
  72. * 用户点击右上角分享
  73. */
  74. onShareAppMessage() {
  75. },
  76. getHead_info() {
  77. let that = this;
  78. wx.showLoading({
  79. title: '加载中',
  80. mask: true
  81. })
  82. wx.request({
  83. url: api.Head_info,
  84. header: {
  85. 'Authorization': wx.getStorageSync('token')
  86. },
  87. data: {
  88. id: that.data.id
  89. },
  90. success(res) {
  91. wx.hideLoading()
  92. console.log(res);
  93. if (res.data.code === 1) {
  94. that.setData({
  95. user_info: res.data.data.user_info,
  96. classification_info: res.data.data.classification_info,
  97. info: res.data.data.info
  98. })
  99. } else {
  100. wx.showToast({
  101. title: res.data.msg,
  102. mask: true,
  103. icon: 'none'
  104. })
  105. }
  106. },
  107. fail(err) {
  108. wx.hideLoading()
  109. wx.showToast({
  110. title: '发起网络请求失败',
  111. icon: 'none',
  112. mask: true
  113. })
  114. },
  115. complete() {
  116. // wx.hideLoading()
  117. }
  118. })
  119. },
  120. getCode_gang() {
  121. let that = this;
  122. wx.showLoading({
  123. title: '加载中',
  124. mask: true
  125. })
  126. wx.request({
  127. url: api.Code_gang,
  128. header: {
  129. 'Authorization': wx.getStorageSync('token')
  130. },
  131. data: {
  132. id: that.data.id
  133. },
  134. success(res) {
  135. wx.hideLoading()
  136. console.log(res);
  137. if (res.data.code === 1) {
  138. that.setData({
  139. pintuan_detail: res.data.data
  140. })
  141. } else {
  142. wx.showToast({
  143. title: res.data.msg,
  144. mask: true,
  145. icon: 'none'
  146. })
  147. }
  148. },
  149. fail(err) {
  150. wx.hideLoading()
  151. wx.showToast({
  152. title: '发起网络请求失败',
  153. icon: 'none',
  154. mask: true
  155. })
  156. },
  157. complete() {
  158. // wx.hideLoading()
  159. }
  160. })
  161. },
  162. // 团长保存图片
  163. downloadImg() {
  164. wx.showLoading({
  165. title: '加载中...'
  166. });
  167. //wx.downloadFile方法:下载文件资源到本地
  168. wx.downloadFile({
  169. url: this.data.user_info.wechat_code, //图片地址
  170. success: function (res) {
  171. //wx.saveImageToPhotosAlbum方法:保存图片到系统相册
  172. wx.saveImageToPhotosAlbum({
  173. filePath: res.tempFilePath, //图片文件路径
  174. success: function (data) {
  175. wx.hideLoading(); //隐藏 loading 提示框
  176. wx.showModal({
  177. title: '提示',
  178. content: '保存成功',
  179. modalType: false,
  180. })
  181. },
  182. // 接口调用失败的回调函数
  183. fail: function (err) {
  184. if (err.errMsg === "saveImageToPhotosAlbum:fail:auth denied" || err.errMsg === "saveImageToPhotosAlbum:fail auth deny" || err.errMsg === "saveImageToPhotosAlbum:fail authorize no response") {
  185. wx.showModal({
  186. title: '提示',
  187. content: '需要您授权保存相册',
  188. modalType: false,
  189. success: modalSuccess => {
  190. wx.openSetting({
  191. success(settingdata) {
  192. console.log("settingdata", settingdata)
  193. if (settingdata.authSetting['scope.writePhotosAlbum']) {
  194. wx.showModal({
  195. title: '提示',
  196. content: '获取权限成功,再次点击图片即可保存',
  197. modalType: false,
  198. })
  199. } else {
  200. wx.showModal({
  201. title: '提示',
  202. content: '获取权限失败,将无法保存到相册哦~',
  203. modalType: false,
  204. })
  205. }
  206. },
  207. fail(failData) {
  208. console.log("failData", failData)
  209. },
  210. complete(finishData) {
  211. console.log("finishData", finishData)
  212. }
  213. })
  214. }
  215. })
  216. }
  217. },
  218. complete(res) {
  219. wx.hideLoading(); //隐藏 loading 提示框
  220. }
  221. })
  222. }
  223. })
  224. },
  225. // 拼团保存图片
  226. downloadImg2() {
  227. wx.showLoading({
  228. title: '加载中...'
  229. });
  230. //wx.downloadFile方法:下载文件资源到本地
  231. wx.downloadFile({
  232. url: this.data.pintuan_detail.gang_code, //图片地址
  233. success: function (res) {
  234. //wx.saveImageToPhotosAlbum方法:保存图片到系统相册
  235. wx.saveImageToPhotosAlbum({
  236. filePath: res.tempFilePath, //图片文件路径
  237. success: function (data) {
  238. wx.hideLoading(); //隐藏 loading 提示框
  239. wx.showModal({
  240. title: '提示',
  241. content: '保存成功',
  242. modalType: false,
  243. })
  244. },
  245. // 接口调用失败的回调函数
  246. fail: function (err) {
  247. if (err.errMsg === "saveImageToPhotosAlbum:fail:auth denied" || err.errMsg === "saveImageToPhotosAlbum:fail auth deny" || err.errMsg === "saveImageToPhotosAlbum:fail authorize no response") {
  248. wx.showModal({
  249. title: '提示',
  250. content: '需要您授权保存相册',
  251. modalType: false,
  252. success: modalSuccess => {
  253. wx.openSetting({
  254. success(settingdata) {
  255. console.log("settingdata", settingdata)
  256. if (settingdata.authSetting['scope.writePhotosAlbum']) {
  257. wx.showModal({
  258. title: '提示',
  259. content: '获取权限成功,再次点击图片即可保存',
  260. modalType: false,
  261. })
  262. } else {
  263. wx.showModal({
  264. title: '提示',
  265. content: '获取权限失败,将无法保存到相册哦~',
  266. modalType: false,
  267. })
  268. }
  269. },
  270. fail(failData) {
  271. console.log("failData", failData)
  272. },
  273. complete(finishData) {
  274. console.log("finishData", finishData)
  275. }
  276. })
  277. }
  278. })
  279. }
  280. },
  281. complete(res) {
  282. wx.hideLoading(); //隐藏 loading 提示框
  283. }
  284. })
  285. }
  286. })
  287. }
  288. })