// pages/productinfo/productinfo.js import productApi from '../../api/product' Page({ /** * 页面的初始数据 */ data: { productinfo: { title: "葛优躺(北京躺)电影足疗", price: "666", commentsList: [] }, shopId: 0, productId: 0, product: {} }, /** * 生命周期函数--监听页面加载 */ onLoad: async function (options) { wx.showLoading({ title: '加载中', }) var shopId = options.shopId; var productId = options.productId; var product = await productApi.getProductById(productId); this.setData({ shopId, productId, product: product.info }) /* var list = [{ 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" }, ] } }]; this.setData({ // id: options.id, commentsList: list, }) */ }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { }, gotoAllComments: function (e) { var shopId = this.data.shopId; var productId = this.data.productId; wx.navigateTo({ url: '../comments/comments?title=全部评论&commentstype=all&shopId='+shopId+'&productId='+productId, }) }, gotoAppointment:function (e) { var shopId = this.data.shopId; var productId = this.data.productId; wx.navigateTo({ url: '../appointment/appointment?shopId='+shopId+'&productId='+productId, }) } })