基于vue-router的小练习——后台管理系统

10 篇文章 0 订阅

1. 练习到的技术点

  • 路由的基础用法
  • 嵌套路由
  • 路由重定向
  • 路由传参
  • 编程式导航

2. 实现效果

效果展示

3. 实现代码

<!DOCTYPE html>
<html lang="Zh">

<head>
    <meta charset="UTF-8" />
    <title>基于vue-router的案例</title>
    <style>
        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="https://jack-img.oss-cn-hangzhou.aliyuncs.com/js/vue.js"></script>
    <script src="https://jack-img.oss-cn-hangzhou.aliyuncs.com/js/vue-router_3.0.2.js"></script>
</head>

<body>
    <div id="app">
        <router-view></router-view>
    </div>


    <script>
        // 定义app根组件
        const App = {
            template: `
                  <div>
                  <!-- 头部区域 -->
                  <header class="header">后台管理系统</header>
                  <!-- 中间主体区域 -->
                  <div class="main">
                      <!-- 左侧菜单栏 -->
                      <div class="content left">
                          <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></router-view>
                          </div>
                      </div>
                  </div>
                  <!-- 尾部区域 -->
                  <footer class="footer">版权信息</footer>
              </div>
        `
        }

        const Users = {
            data() {
                return {
                    userlist: [{
                        id: 1,
                        name: 'zhangsan',
                        age: 10
                    }, {
                        id: 2,
                        name: 'lisi',
                        age: 11
                    }, {
                        id: 3,
                        name: 'wangwu',
                        age: 12
                    }, {
                        id: 4,
                        name: 'zhangsan',
                        age: 13
                    }, {
                        id: 5,
                        name: 'xiaoming',
                        age: 14
                    }]
                }
            },
            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>
                      <tr v-for="item in userlist" :key="item.id">
                        <td>{{item.id}}</td>
                        <td>{{item.name}}</td>
                        <td>{{item.age}}</td>
                        <td><a href="javascript:;" @click='goDetail(item.id)'>详情</a></td>
                      </tr>
                    </tbody>
                  </table>
              </div>
          `
        };

        const UserInfo = {
            props: ['id'],
            template: `
            <div>
              <h2>用户详情页---用户ID为:{{id}}</h2>
              <button  @click="goBack()">后退</button>
            </div>
            
          `,
            methods: {
                goBack() {
                    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({
            routes: [{
                path: '/',
                component: App,
                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
                }]
            }]
        });

        const vm = new Vue({
            el: '#app',
            router
        });
    </script>
</body>

</html>
  • 3
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
好的,下面我来为您介绍一下如何使用vue-router实现用户登录注册功能。 首先,我们需要安装vue-router,可以通过以下命令进行安装: ``` npm install vue-router --save ``` 然后,在main.js中引入并使用vue-router: ``` import VueRouter from 'vue-router' Vue.use(VueRouter) ``` 接下来,我们新建一个router.js文件,用于配置路由。在该文件中,我们需要定义路由路径和路由组件: ``` import Vue from 'vue' import VueRouter from 'vue-router' import Login from './components/Login.vue' import Register from './components/Register.vue' Vue.use(VueRouter) const routes = [ { path: '/login', component: Login }, { path: '/register', component: Register } ] const router = new VueRouter({ routes }) export default router ``` 在上面的代码中,我们定义了两个路由路径:/login和/register,并分别对应了Login和Register两个组件。 接下来,在App.vue中,我们需要使用<router-view>标签来显示路由组件: ``` <template> <div id="app"> <router-view></router-view> </div> </template> ``` 最后,在main.js中引入router.js,并将其挂载到Vue实例中: ``` import Vue from 'vue' import App from './App.vue' import router from './router' Vue.config.productionTip = false new Vue({ router, render: h => h(App), }).$mount('#app') ``` 至此,我们已经完成了基本的路由配置。接下来,我们可以在Login和Register组件中实现具体的登录和注册功能。 在Login组件中,我们可以使用Vue.js提供的v-model指令来绑定表单输入的数据,并在点击登录按钮时向服务器发送请求验证用户名和密码: ``` <template> <div class="login"> <h1>登录</h1> <form> <label>用户名:</label> <input type="text" v-model="username"> <br> <label>密码:</label> <input type="password" v-model="password"> <br> <button @click.prevent="login">登录</button> </form> </div> </template> <script> export default { data() { return { username: '', password: '' } }, methods: { login() { // 向服务器发送请求验证用户名和密码 } } } </script> ``` 而在Register组件中,我们可以使用v-model指令来绑定表单输入的数据,并在点击注册按钮时向服务器发送请求创建新用户: ``` <template> <div class="register"> <h1>注册</h1> <form> <label>用户名:</label> <input type="text" v-model="username"> <br> <label>密码:</label> <input type="password" v-model="password"> <br> <label>确认密码:</label> <input type="password" v-model="confirmPassword"> <br> <button @click.prevent="register">注册</button> </form> </div> </template> <script> export default { data() { return { username: '', password: '', confirmPassword: '' } }, methods: { register() { // 向服务器发送请求创建新用户 } } } </script> ``` 到这里,我们已经完成了一个简单的用户登录注册功能,并使用vue-router实现了路由跳转。当用户访问/login时,会显示Login组件;当用户访问/register时,会显示Register组件。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

火星飞鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值