// pages/webView/index.js import { } from '../../api/index' Page({ /** * 页面的初始数据 */ data: { hasUserInfo: true, userInfo: {}, id: '', linkUrl: '' }, onLoad: function (options) { var that = this const eventChannel = this.getOpenerEventChannel() if(eventChannel){ eventChannel.on('data', function (res) { console.log(res)//传递参数 if(res){ that.setData({ linkUrl: res.link}) console.log(that.data.linkUrl) } }); } }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { let { link, id } = this.data return { title: '', path: '/pages/index/index?id=' + id + '&link=' + link + '&type=2' } } })