mounted () {
//判断url是否存在code
if(T.searchURL().code){
// 处理回退空白问题
window.history.pushState('_back',null,location.href)
window.addEventListener('popstate',this.popstate,false)
}
},
destroyed(){
window.removeEventListener('popstate',this.popstate,false)
},
methods:{
popstate(){
wx.closeWindow()
}
}