123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- // 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,
- })
- }
- })
|