sharetofirend.js 8.2 KB

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