productReview.js 940 字节
// pages/productReview/productReview.js
const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    show: true,
    // nodes: ''
    order_no: '',
    publicList: [],
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    //  console.log(options);
    this.setData({
      order_no: options.order_no
    })
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    this.getPublicList()
  },

  async getPublicList() {
    let that = this
    const {
      data: {
        data
      }
    } = await request({
      url: 'api/my/pingGood',
      data: {
        order_no: that.data.order_no
      }
    })
    //  console.log(data, "评价详情");
    that.setData({
      publicList: data
    })
    //  console.log(that.data.publicList);


  },
})