赞
踩
- wx.navigateTo({
-
- url: '/pages/views/business/data/supplier/editSupplier/editSupplier',
-
- success: function (res) {
-
- // 通过eventChannel向被打开页面传送数据
-
- res.eventChannel.emit('edit', {
-
- title: '修改',
-
- id: id,
-
- })
-
- }
-
- });
-
- 被打开的页面
-
- /**
-
- * 生命周期函数--监听页面加载
-
- */
-
- onLoad: function (options) {
-
- let that = this;
-
- const eventChannel = this.getOpenerEventChannel();
-
- eventChannel.on('edit', function (data) {
-
- console.log(data)
-
- });
-
- },

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。