码迷,mamicode.com
首页 > 其他好文 > 详细

Vue之七导航守卫

时间:2018-01-18 19:33:58      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:room   enter   highlight   div   log   before   导航   道具   ajax   

{
 		path:‘/‘,component:Recommend,beforeEnter: (to, from, next) => {
			console.log(to);
			ajax(‘get‘,‘/api/mall/categoryList‘,true,‘‘,res=>{
				var data=res.data;
				if(data[0].categoryName=="推荐"){
					next({path:‘/Recommend‘,query:{categoryId:data[0].categoryId}})
				}else if(data[0].categoryName=="房卡"){
					next({path:‘/RoomCard‘,query:{categoryId:data[0].categoryId}})
				}else if(data[0].categoryName=="钻石"){
					next({path:‘/Diamonds‘,query:{categoryId:data[0].categoryId}})
				}else if(data[0].categoryName=="金币"){
					next({path:‘/Gold‘,query:{categoryId:data[0].categoryId}})
				}else if(data[0].categoryName=="礼包"){
					next({path:‘/Package‘,query:{categoryId:data[0].categoryId}})
				}else if(data[0].categoryName=="道具"){
					next({path:‘/Prop‘,query:{categoryId:data[0].categoryId}})
				}
			})
      }
 	},

  

Vue之七导航守卫

标签:room   enter   highlight   div   log   before   导航   道具   ajax   

原文地址:https://www.cnblogs.com/yiyi17/p/8311764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!