album.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. // pages/album/album.js
  2. const HOST = require('../../utils/const.js').apiUrl;
  3. import httpRequestApi from '../../utils/APIRequest';
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. stateFlag: true,
  10. photoList: [],
  11. photoBoxToken: []
  12. },
  13. //更改相册
  14. setState: function () {
  15. this.setData({
  16. stateFlag: !this.data.stateFlag
  17. })
  18. const photoBox = this.data.stateFlag ? 'OPEN' : 'PRIVACY';
  19. wx.setStorageSync('photoBox', photoBox);
  20. httpRequestApi.setPhoto(photoBox).success(res => {
  21. const photoBoxToken = this.data.stateFlag ? [] : res.data.data.photoBoxToken.toString().split('');
  22. this.setData({
  23. photoBoxToken,
  24. })
  25. });
  26. },
  27. //上传相册
  28. addPhoto: function () {
  29. const userInfo = wx.getStorageSync('userInfo');
  30. if(!userInfo.data.data.mobileNo || !userInfo.data.data.avatar) {
  31. wx.navigateTo({
  32. url: '/pages/setName/setName'
  33. })
  34. return false;
  35. };
  36. if(this.data.photoList.length >= 15) {
  37. wx.showModal({
  38. title: '温馨提示',
  39. content: '只能上传15张图片'
  40. })
  41. return false;
  42. };
  43. wx.chooseImage({
  44. count: 9, // 默认9
  45. sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
  46. sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
  47. success: (res) => {
  48. // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
  49. const tempFilePaths = res.tempFilePaths;
  50. //启动上传等待中...
  51. wx.showToast({
  52. title: '正在上传...',
  53. icon: 'loading',
  54. mask: true,
  55. duration: 1000
  56. })
  57. const that = this;
  58. let uploadImgCount = 0;
  59. tempFilePaths.forEach(item => {
  60. //上传文件
  61. wx.uploadFile({
  62. url: HOST + 'wx/file/upload',
  63. filePath: item,
  64. name: 'uploadfile_ant',
  65. header: {
  66. "Content-Type": "multipart/form-data"
  67. },
  68. success: (res) => {
  69. uploadImgCount++;
  70. const data = JSON.parse(res.data);
  71. if(data.success) {
  72. //上传文件成功后放到相册里
  73. httpRequestApi.addPhotoList({
  74. path: data.data
  75. }).success((res) => {
  76. if(res.data.success) {
  77. //再次调用相册列表
  78. that.getPhotoList();
  79. }
  80. }).fail(() => {
  81. wx.showModal({
  82. title: '错误提示',
  83. content: '图片上传到相册失败'
  84. })
  85. });
  86. }
  87. //如果是最后一张,则隐藏等待中
  88. if (uploadImgCount == tempFilePaths.length) {
  89. wx.hideToast();
  90. }
  91. },
  92. fail: function (res) {
  93. wx.hideToast();
  94. wx.showModal({
  95. title: '错误提示',
  96. content: '上传图片失败'
  97. })
  98. }
  99. });
  100. });
  101. }
  102. })
  103. },
  104. //预览图片
  105. preview: function ({ currentTarget }) {
  106. // const index = currentTarget.dataset.index;
  107. // console.log(this.data.photoList[index].path);
  108. const imageUrl = [];
  109. for (let item of this.data.photoList) {
  110. imageUrl.push(item.path)
  111. }
  112. wx.previewImage({
  113. urls: imageUrl
  114. })
  115. },
  116. //删除相册
  117. removePhoto: function ({ currentTarget }) {
  118. httpRequestApi.removePhotoList(currentTarget.dataset.id).success((res) => {
  119. console.log('删除册列表', res);
  120. if(res.data.success) {
  121. this.getPhotoList();
  122. }
  123. })
  124. },
  125. /**
  126. * 生命周期函数--监听页面加载
  127. */
  128. onLoad: function (options) {
  129. this.getPhotoList();
  130. //初始化相册是否加密
  131. const photoBox = (wx.getStorageSync('photoBox') === 'OPEN' ? true : false);
  132. this.setData({
  133. stateFlag: photoBox
  134. })
  135. if(!photoBox) {
  136. httpRequestApi.setPhoto(wx.getStorageSync('photoBox')).success(res => {
  137. const photoBoxToken = this.data.stateFlag ? [] : res.data.data.photoBoxToken.toString().split('');
  138. this.setData({
  139. photoBoxToken,
  140. })
  141. });
  142. }
  143. },
  144. /**
  145. * 页面上拉触底事件的处理函数
  146. */
  147. onReachBottom: function () {
  148. },
  149. /**
  150. * 用户点击右上角分享
  151. */
  152. onShareAppMessage: function () {
  153. },
  154. //获取相册列表
  155. getPhotoList: function () {
  156. httpRequestApi.getPhotoList({
  157. pageNo: 1,
  158. pageSize: 15
  159. }).success((res) => {
  160. console.log('相册列表', res.data.data.list);
  161. this.setData({
  162. photoList: res.data.data.list
  163. })
  164. })
  165. }
  166. })