Page({ /** * 页面的初始数据 */ data: { promise: { picPath: [], pdfPath: '', } }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that = this this.getOpenerEventChannel().on('acceptPromiseData', function (data) { console.log(data); // data.promise.picPath = $f.basePicUrl + data.promise.picPath // data.promise.pdfPath = $f.basePicUrl + data.promise.pdfPath that.setData({ promise: data.promise }) }) }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { // var pages = getCurrentPages() // var d = pages.length - 1 // wx.navigateBack({ // delta: d, // success: (res) => {}, // fail: (res) => {}, // complete: (res) => {}, // }) }, })