// pages/treaty/rule/rule.js Page({ /** * 页面的初始数据 */ data: { id: '', title: '' }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { const _self = this this.setData({ id: options.id, title: options.title }) wx.setNavigationBarTitle({ title: _self.data.title, }) }, })