howtouse.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // pages/howtouse/howtouse.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. imgs:[1,2,3,4,5,6,7],
  8. imgUrls:[],
  9. baseUrl: getApp().globalData.postHeadAgreement.substring(getApp().globalData.postHeadAgreement,getApp().globalData.postHeadAgreement.indexOf("/",8))
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad(options) {
  15. },
  16. /**
  17. * 生命周期函数--监听页面初次渲染完成
  18. */
  19. onReady() {
  20. },
  21. /**
  22. * 生命周期函数--监听页面显示
  23. */
  24. onShow() {
  25. let imgUrls = [];
  26. for(let i=0;i<this.data.imgs.length;i++){
  27. imgUrls.push(this.data.baseUrl + "/web/profile/avatar/howtouse/" + this.data.imgs[i] + ".jpg");
  28. }
  29. console.info(imgUrls)
  30. this.setData({
  31. imgUrls
  32. })
  33. },
  34. /**
  35. * 生命周期函数--监听页面隐藏
  36. */
  37. onHide() {
  38. },
  39. /**
  40. * 生命周期函数--监听页面卸载
  41. */
  42. onUnload() {
  43. },
  44. /**
  45. * 页面相关事件处理函数--监听用户下拉动作
  46. */
  47. onPullDownRefresh() {
  48. },
  49. /**
  50. * 页面上拉触底事件的处理函数
  51. */
  52. onReachBottom() {
  53. },
  54. /**
  55. * 用户点击右上角分享
  56. */
  57. onShareAppMessage() {
  58. },
  59. previewImage(e){
  60. console.info(e)
  61. var that = this,
  62. //获取当前图片的下表
  63. index = e.currentTarget.dataset.index,
  64. //数据源
  65. imgUrls = this.data.imgUrls;
  66. wx.previewImage({
  67. //当前显示下表
  68. current: imgUrls[index],
  69. //数据源
  70. urls: imgUrls
  71. })
  72. },
  73. })