//带参跳转页面
getNew(index){
	let me = this
	let tbid = me.wacthLists[index].tbid

    //因为跳转的非tabbar页面
	uni.navigateTo({
		url:'/pages/new/newWacth?tbid='+tbid
	})
},
//接收参数的页面
onLoad(opions){
    //注意这里一定要带上参数判断options.tbid,而不是直接判断options
    if(opions.tbid == '' || opions.tbid == undefined || opions.tbid == null){
        //这里事写下需要执行的函数
    }
}