使用页面生命周期的onTabItemTap,和onShow等同级
onTabItemTap(e) {
// 页面重载
const pages = getCurrentPages() // 声明一个pages使用getCurrentPages方法
const curPage = pages[pages.length - 1] // 声明一个当前页面
let currentRoute = pages[pages.length - 1].route //当前页地址
curPage.onLoad(curPage.options) // 传入参数
curPage.onShow()
curPage.onReady() // 执行刷新
},