onShow(){
this.watch1 = db.collection('order').doc(this.order_id).watch({
onChange:res=>{},
onError:err=>{
console.error(err)
}
})
},
onHide(){
this.watch1.close().then(()=>{
console.log('watch1关闭')
}).catch((err)=>{
console.error('watch1关闭失败',err)
})
}