{ console.log(res); let tabIndex = r_uni.navigateback">
赞
踩
1.返回上一页点击按钮及配置参数
- backNav() {
- uni.$emit("planAdd",{tabIndex: 2});
- uni.navigateBack(); //此地方用的是uni的返回上一页方法,如需其他的返回方法请进行相对应替换
- },
2.页面接收参数(在onShow里)
- onShow(){
- let that = this;
- uni.$on("planAdd", res => {
- console.log(res);
- let tabIndex = res.tabIndex
- // 清除监听
- uni.$off('planAdd');
- })
- },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。