路由方法
routTeam(row, column, cell, event) {
console.log(row)
console.log("111")
const teamId = 123
this.$router.push('/routTeam/team/' + row.teamId)
},
===============// 公共路由
export const constantRoutes = [
{
path: '/routTeam',
component: Layout,
hidden: true,
children: [
{
path: 'team/:teamId(\\d+)',
component: (resolve) => require(['@/views/system/team/index'], resolve),
name: 'Team',
meta: { title: '团队管理', icon: '' }
}
]
},]
==============路由页面接收
created() {
const teamId = this.$route.params && this.$route.params.teamId;
this.queryParams.teamId = teamId;
this.getList();
},