[Micro] letter applet listens click event triggered the bottom tab

 onTabItemTap is at the same level and mouted

 

<script>
export default{
 data () {
    return {
      showSendBtn: true,
      data: {
        code: '',
        tel: ''
      },
      sharePath: '',
      count: 60
    }
  },
  mounted () {},、
  onTabItemTap (item) {
    console.log(item.index)
    console.log(item.pagePath)
    console.log(item.text)
    let encryptedData = wxGetStorageSync('encryptedData')
    if (!encryptedData) {
      this.$router.replace({
        path: '/pages/login/phone/main'

      })
    }
  },
}
</script>

 

Published 47 original articles · won praise 1 · views 10000 +

Guess you like

Origin blog.csdn.net/qq_35858830/article/details/104639764