var Api = require('../../../utils/common.js'); var re = require('../../../utils/request.js'); Page({ /** * 页面的初始数据 */ data: { photolist:[], id:'', uploaderList: [],//fengmian showList: [], uploaderNum: 0, showUpload: true, ifremove:true, remooveList:[] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that = this; that.setData({ id:options.id }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, toedit:function(){ this.setData({ ifremove:false, remooveList:[] }) }, getAlbumOne:function(){ var that = this; const imgUrl = wx.getStorageSync('imgUrl') var header = { token:wx.getStorageSync('token'), "Content-Type": "application/x-www-form-urlencoded" }; var postData={ albumId:that.data.id, param:'1', sort:'desc' }; re.request(Api.getAlbumOne(), postData, header).then((res) => { let datas = res.data.data; console.log(datas) for(let i=0;i { wx.showToast({ title: '上传成功', icon: 'none' }) wx.navigateBack({ delta: 1 }) }) }, deletephoto:function(){ var that = this; var header = { token:wx.getStorageSync('token'), "Content-Type": "application/x-www-form-urlencoded" }; let list = that.data.remooveList; let ids = ''; ids = list.join(',') var postData={ ids:ids, }; if(ids){ re.request(Api.removephoto(), postData, header).then((res) => { wx.showToast({ title: '删除成功', icon: 'none' }) that.setData({ ifremove:true }) that.getAlbumOne(); }) }else{ wx.showToast({ title: '请选择你要删除的图片', icon: 'none' }) } }, tonoenjoy:function(e){ var that = this; var header = { token:wx.getStorageSync('token'), "Content-Type": "application/x-www-form-urlencoded" }; var postData={ mode:'sub', photoId:e.currentTarget.dataset.id }; re.request(Api.photoenjoy(), postData, header).then((res) => { wx.showToast({ title: '取消点赞', icon: 'none' }) that.getAlbumOne(); }) }, toenjoy:function(e){ var that = this; var header = { token:wx.getStorageSync('token'), "Content-Type": "application/x-www-form-urlencoded" }; var postData={ mode:'add', photoId:e.currentTarget.dataset.id }; re.request(Api.photoenjoy(), postData, header).then((res) => { wx.showToast({ title: '点赞成功', icon: 'none' }) that.getAlbumOne(); }) }, checkboxChange:function(e){ const values = e.detail.value; this.setData({ remooveList:values }) }, // /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })