当前位置:   article > 正文

基于Vue+element设计 经典网站后台管理界面_vue+elementui管理项目界面

vue+elementui管理项目界面
<template>
  <el-container>
    <el-header
      height=""
    >
      <el-menu :default-active="activeIndex"
               class="el-menu-demo"
               mode="horizontal"
               @select="handleSelect"
               text-color="white"
               background-color="black">
        <el-menu-item index="1">
          <a href="/" target="_blank">首页</a>
        </el-menu-item>

        <el-menu-item index="2">
          <a href=" " target="_blank">订单管理</a>
        </el-menu-item>

        <el-submenu index="3">
          <template slot="title">个人中心</template>
          <el-menu-item index="2-2">退出登录</el-menu-item>
        </el-submenu>

        <el-menu-item index="4" style="float: right;">
          <span style="margin-right: 15px;">有勇气的牛排</span>
          <el-avatar src="https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png"></el-avatar>
        </el-menu-item>

      </el-menu>
      <div class="line"></div>

    </el-header>
    <el-container>
      <el-aside width="">
        <el-row class="tac">
          <el-col :span="24">
            <el-menu
              default-active="2"
              class="el-menu-vertical-demo"
              @open="handleOpen"
              @close="handleClose">

              <el-menu-item index="1">
                <i class="el-icon-setting"></i>
                <span slot="title">
                     <router-link to="/user_account">账户设置</router-link>
                  </span>
              </el-menu-item>

              <el-menu-item index="2">
                <i class="el-icon-menu"></i>
                <span slot="title">
                    <router-link to="/user_profile">个人资料</router-link>
                  </span>
              </el-menu-item>

              <el-menu-item index="3">
                <i class="el-icon-menu"></i>
                <span slot="title">
                    <router-link to="/user_article_analysis">数据概览</router-link>
                  </span>
              </el-menu-item>

              <el-menu-item index="4">
                <i class="el-icon-menu"></i>
                <span slot="title">
                    <router-link to="/user_setting">博客设置</router-link>
                  </span>
              </el-menu-item>

            </el-menu>
          </el-col>
        </el-row>

      </el-aside>
      <el-main>
        <router-view/>
      </el-main>

    </el-container>
    <el-container
      width="">
      <el-footer>Footer</el-footer>
    </el-container>

  </el-container>

</template>

<script>
  export default {
    name: 'App',
  }
</script>

<style>

  /* 框架 */
  .el-header {
    background-color: black;
    color: white;
    text-align: center;
    /*line-height: 60px;*/
  }

  .el-footer {
    background-color: black;
    color: white;
    text-align: center;
    line-height: 60px;
  }

  .el-aside {
    background-color: #D3DCE6;
    color: #333;
    text-align: center;
    line-height: 200px;
  }

  .el-main {
    background-color: #E9EEF3;
    color: #333;
    text-align: center;
    line-height: 160px;
  }

  body > .el-container {
    margin-bottom: 40px;
  }

  .el-container:nth-child(5) .el-aside,
  .el-container:nth-child(6) .el-aside {
    line-height: 260px;
  }

  .el-container:nth-child(7) .el-aside {
    line-height: 320px;
  }

</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142

预览
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/113328
推荐阅读
相关标签