You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
2.7 KiB
147 lines
2.7 KiB
var Api = require('../../../utils/common.js'); |
|
var re = require('../../../utils/request.js'); |
|
Page({ |
|
|
|
/** |
|
* 页面的初始数据 |
|
*/ |
|
data: { |
|
albumlist:[], |
|
hidden:true, |
|
albumName:'', |
|
clubId:'' |
|
}, |
|
toalbumdetail:function(e){ |
|
let albumId = e.currentTarget.dataset.id |
|
wx.navigateTo({ |
|
url: '../albumdetail/albumdetail?id='+albumId+'' |
|
}) |
|
}, |
|
tocreateAlbum:function(){ |
|
this.setData({ |
|
hidden:false, |
|
}) |
|
}, |
|
albumName: function (e) { |
|
this.setData({ |
|
albumName: e.detail.value, |
|
}) |
|
}, |
|
cancel: function(){ |
|
this.setData({ |
|
hidden: true |
|
}); |
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面加载 |
|
*/ |
|
onLoad: function (options) { |
|
this.setData({ |
|
clubId:options.id |
|
}), |
|
this.getClubAlbum(options.id); |
|
}, |
|
getClubAlbum:function(id){ |
|
var that = this; |
|
var postData = { |
|
clubId:that.data.clubId |
|
}; |
|
const imgUrl = wx.getStorageSync('imgUrl'); |
|
var header = { |
|
token: wx.getStorageSync('token'), |
|
"Content-Type": "application/x-www-form-urlencoded" |
|
}; |
|
re.request(Api.getClubAlbum(),postData, header).then((res) => { |
|
let datas = res.data.data; |
|
for(var i=0;i<datas.length;i++){ |
|
if(datas[i].albumLogo){ |
|
datas[i].albumLogo = imgUrl + datas[i].albumLogo; |
|
} |
|
} |
|
that.setData({ |
|
albumlist: datas |
|
}) |
|
}) |
|
}, |
|
confirm:function(){ |
|
var that = this; |
|
var postData = { |
|
albumName: that.data.albumName, |
|
clubId:that.data.clubId |
|
}; |
|
var header = { |
|
token: wx.getStorageSync('token'), |
|
"Content-Type": "application/x-www-form-urlencoded" |
|
}; |
|
if (!that.data.albumName) { |
|
wx.showToast({ |
|
title: '相册名称不能为空', |
|
icon: 'none', |
|
duration: 1000 |
|
}) |
|
} else { |
|
re.request(Api.addClubAlbum(),postData, header).then((res) => { |
|
wx.showToast({ |
|
title: '提交成功', |
|
icon: 'none', |
|
duration: 1000 |
|
}) |
|
that.setData({ |
|
hidden: true, |
|
addtag:'' |
|
}) |
|
this.getClubAlbum(this.data.clubId); |
|
}) |
|
} |
|
|
|
}, |
|
/** |
|
* 生命周期函数--监听页面初次渲染完成 |
|
*/ |
|
onReady: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面显示 |
|
*/ |
|
onShow: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面隐藏 |
|
*/ |
|
onHide: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面卸载 |
|
*/ |
|
onUnload: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 页面相关事件处理函数--监听用户下拉动作 |
|
*/ |
|
onPullDownRefresh: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 页面上拉触底事件的处理函数 |
|
*/ |
|
onReachBottom: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 用户点击右上角分享 |
|
*/ |
|
onShareAppMessage: function () { |
|
|
|
} |
|
}) |