案例:后台管理路由案例
案例分析:
1. 用到的路由技术要点:
- 路由的基础用法
- 嵌套路由
- 路由重定向
- 路由传参
- 编程式导航
2. 根据项目的整体布局划分好组件结构,通过路由导航控制组件的显示
- 抽离并渲染 App 根组件
- 将左侧菜单改造为路由链接
- 创建左侧菜单对应的路由组件
- 在右侧主体区域添加路由占位符
- 添加子路由规则
- 通过路由重定向默认渲染用户组件
- 渲染用户列表数据
- 编程式导航跳转到用户详情页
- 实现后退功能
案例完整代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>基于vue-router的案例--后台管理路由案例</title>
<style type="text/css">
html,
body,
#app {
margin: 0;
padding: 0px;
height: 100%;
}
.header {
height: 50px;
background-color: #545c64;
line-height: 50px;
text-align: center;
font-size: 24px;
color: #fff;
}
.footer {
height: 40px;
line-height: 40px;
background-color: #888;
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
color: #fff;
}
.main {
display: flex;
position: absolute;
top: 50px;
bottom: 40px;
width: 100%;
}
.content {
flex: 1;
text-align: center;
height: 100%;
}
.left {
flex: 0 0 20%;
background-color: #545c64;
}
.left a {
color: white;
text-decoration: none;
}
.right {
margin: 5px;
}
.btns {
width: 100%;
height: 35px;
line-height: 35px;
background-color: #f5f5f5;
text-align: left;
padding-left: 10px;
box-sizing: border-box;
}
button {
height: 30px;
background-color: #ecf5ff;
border: 1px solid lightskyblue;
font-size: 12px;
padding: 0 20px;
}
.main-content {
margin-top: 10px;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
ul li {
height: 45px;
line-height: 45px;
background-color: #a0a0a0;
color: #fff;
cursor: pointer;
border-bottom: 1px solid #fff;
}
table {
width: 100%;
border-collapse: collapse;
}
td,
th {
border: 1px solid #eee;
line-height: 35px;
font-size: 12px;
}
th {
background-color: #ddd;
}
</style>
<script src="./lib/vue_2.5.22.js"></script>
<script src="./lib/vue-router_3.0.2.js"></script>
</head>
<body>
<!-- 要被 vue 实例所控制的区域 -->
<div id="app">
<!-- 4. 添加路由占位符 -->
<router-view></router-view>
</div>
<script>
// 1. 定义 APP 根组件
const App = {
template: `
<div>
<!-- 头部区域 -->
<header class="header">XXX后台管理系统</header>
<!-- 中间主体区域 -->
<div class="main">
<!-- 左侧菜单栏 -->
<div class="content left">
<!-- 2. 将左侧菜单栏改造为路由链接 -->
<ul>
<li><router-link to="/users">用户管理</router-link></li>
<li><router-link to="/rights">权限管理</router-link></li>
<li><router-link to="/goods">商品管理</router-link></li>
<li><router-link to="/orders">订单管理</router-link></li>
<li><router-link to="/settings">系统设置</router-link></li>
</ul>
</div>
<!-- 右侧内容区域 -->
<div class="content right">
<div class="main-content">
<!-- 子路由的占位符 -->
<router-view />
</div>
</div>
</div>
<!-- 尾部区域 -->
<footer class="footer">版权信息</footer>
</div>
`
};
// 3. 创建左侧菜单栏对应的路由组件
const Users = {
data() {
return {
userlist: [
{ id: 1, name: '张三', age: 23 },
{ id: 2, name: '李四', age: 24 },
{ id: 3, name: '王五', age: 25 },
{ id: 4, name: '赵六', age: 26 }
]
}
},
methods: {
goDetail(id) {
console.log(id);
this.$router.push('/userinfo/' + id);
}
},
template: `
<div>
<h3>用户管理区域</h3>
<table>
<thead>
<tr>
<th>编号</th>
<th>姓名</th>
<th>年龄</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<!-- 7. 渲染用户列表数据 -->
<tr v-for="item in userlist" :key="item.id">
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td>{{item.age}}</td>
<td>
<!-- 8. 编程式导航跳转到用户详情页 -->
<a href="javascript:;" @click="goDetail(item.id)">详情</a>
</td>
</tr>
</tbody>
</table>
</div>
`
};
const UserInfo = {
props: ['id'],
template: `
<div>
<h5>用户详情页 --- 用户Id为:{{id}}</h5>
<button @click="goback()">后退</button>
</div>
`,
methods: {
goback() {
// 9. 实现后退功能
this.$router.go(-1);
}
}
};
const Rights = {
template: `
<div>
<h3>权限管理区域</h3>
</div>`
};
const Goods = {
template: `
<div>
<h3>商品管理区域</h3>
</div>`
};
const Orders = {
template: `
<div>
<h3>订单管理区域</h3>
</div>`
};
const Settings = {
template: `
<div>
<h3>系统设置区域</h3>
</div>`
};
// 创建路由对象
const router = new VueRouter({
// 5. 添加子路由规则
routes: [
{
path: '/',
component: App,
// 6. 通过路由重定向默认渲染用户组件
redirect: '/users',
children: [
{ path: '/users', component: Users },
{ path: '/userinfo/:id', component: UserInfo, props: true },
{ path: '/rights', component: Rights },
{ path: '/goods', component: Goods },
{ path: '/orders', component: Orders },
{ path: '/settings', component: Settings }
]
}
]
});
// 把路由挂载到 Vue 根实例中
const vm = new Vue({
// 指定控制的区域
el: '#app',
// 挂载路由实例对象
router
});
</script>
</body>
</html>
|