// pages/comments/comments.js Page({ /** * 页面的初始数据 */ data: { commentsList:[{ id:1, headImg:"../../images/headImg.jpg", product:"葛优躺(北京躺)电影足疗", assessDate:"2020-02-02", stars:5, comments:{ content:"3号技师特别好~~~赞一个,下次还来。", imgs:[ {imgurl:"../../images/commentsImg01.jpg"}, {imgurl:"../../images/commentsImg02.jpg"}, {imgurl:"../../images/commentsImg03.jpg"}, {imgurl:"../../images/commentsImg03.jpg"}, {imgurl:"../../images/commentsImg02.jpg"}, {imgurl:"../../images/commentsImg01.jpg"}, {imgurl:"../../images/commentsImg02.jpg"}, {imgurl:"../../images/commentsImg01.jpg"}, {imgurl:"../../images/commentsImg03.jpg"}, ] } },{ id:2, headImg:"../../images/headImg.jpg", product:"葛优躺(北京躺)电影足疗", assessDate:"2020-02-02", stars:5, comments:{ content:"3号技师特别好~~~赞一个,下次还来。", imgs:[ {imgurl:"../../images/commentsImg01.jpg"}, ] } },{ id:3, headImg:"../../images/headImg.jpg", product:"葛优躺(北京躺)电影足疗", assessDate:"2020-02-02", stars:4, comments:{ content:"3号技师特别好~~~赞一个,下次还来。", imgs:[ ] } },{ id:4, headImg:"../../images/headImg.jpg", product:"葛优躺(北京躺)电影足疗", assessDate:"2020-02-02", stars:5, comments:{ content:"3号技师特别好~~~赞一个,下次还来。", imgs:[ {imgurl:"../../images/commentsImg01.jpg"}, {imgurl:"../../images/commentsImg02.jpg"}, {imgurl:"../../images/commentsImg01.jpg"}, {imgurl:"../../images/commentsImg03.jpg"}, ] } },{ id:5, headImg:"../../images/headImg.jpg", product:"葛优躺(北京躺)电影足疗", assessDate:"2020-02-02", stars:5, comments:{ content:"3号技师特别好~~~赞一个,下次还来。", imgs:[ {imgurl:"../../images/commentsImg01.jpg"}, {imgurl:"../../images/commentsImg02.jpg"}, {imgurl:"../../images/commentsImg03.jpg"}, {imgurl:"../../images/commentsImg02.jpg"}, {imgurl:"../../images/commentsImg01.jpg"}, ] } }], }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { wx.setNavigationBarTitle({ title: options.title }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })