vue-element-ui布局


基本布局
<el-header> 頭部區域
<el-container> 主體區域
<el-aside>側邊欄
<el-menu> 菜單
側邊欄結構
                <el-menu background-color="#333744" text-color="#fff" active-text-color="#409EFF" :unique-opened="true"
                :collapse="isCollapse" :collapse-transition="false" router :default-active="activePath">
                <!-- 一級菜單 -->
                <el-submenu :index="item.id+ ''" v-for="item in menulist" :key="item.id">
                    <!-- 一級菜單模板區域 -->
                    <template slot="title">
                        <!-- 圖標 -->
                        <i :class="iconsObj[item.id]"></i>
                        <!-- 文本 -->
                        <span>{{item.authName}}</span>
                    </template>
                    <!--二級菜單-->
                    <el-menu-item :index="'/'+subItem.path" v-for="subItem in item.children" :key="subItem.id" @click="saveNavState('/'+subItem.path)">
                        <!-- 二級菜單模板區域 -->
                        <template slot="title">
                        <!-- 圖標 -->
                        <i class="el-icon-menu"></i>
                        <!-- 文本 -->
                        <span>{{subItem.authName}}</span>
                        </template>
                    </el-menu-item>
                </el-submenu>
                </el-menu>

  <template slot>作用域插槽,是對組件的擴展,通過slot插槽向組件內部指定位置傳遞內容,通過slot可以父子傳參;

  二級菜單: el-menu-item :index="'/'+subItem.path" :index指定默認路由為'/'+subItem.path" 

全部代碼

<template>
    <el-container class="home-container">
        <!-- 頭部區域 -->
        <el-header>
            <div>
                <img src="../assets/heima.png" alt="">
                <span>電商后台管理系統</span>
            </div>
            <el-button type="info" @click="logout">退出</el-button>
        </el-header>
        <!-- 頁面主體區域 -->
        <el-container>
            <!-- 側邊欄 -->
            <el-aside :width="isCollapse ? '64px':'200px'">
                <!-- 折疊展開 -->
                <div class="toggle-button" @click="toggleCollapse">|||</div>
                <!-- 側邊欄菜單區域 -->
                <el-menu background-color="#333744" text-color="#fff" active-text-color="#409EFF" :unique-opened="true"
                :collapse="isCollapse" :collapse-transition="false" router :default-active="activePath">
                <!-- 一級菜單 -->
                <el-submenu :index="item.id+ ''" v-for="item in menulist" :key="item.id">
                    <!-- 一級菜單模板區域 -->
                    <template slot="title">
                        <!-- 圖標 -->
                        <i :class="iconsObj[item.id]"></i>
                        <!-- 文本 -->
                        <span>{{item.authName}}</span>
                    </template>
                    <!--二級菜單-->
                    <el-menu-item :index="'/'+subItem.path" v-for="subItem in item.children" :key="subItem.id" @click="saveNavState('/'+subItem.path)">
                        <!-- 二級菜單模板區域 -->
                        <template slot="title">
                        <!-- 圖標 -->
                        <i class="el-icon-menu"></i>
                        <!-- 文本 -->
                        <span>{{subItem.authName}}</span>
                        </template>
                    </el-menu-item>
                </el-submenu>
                </el-menu>
            </el-aside>
            <!-- 內容-->
            <el-main>
                <!-- 路由占位符 -->
                <router-view></router-view>
            </el-main>
        </el-container>
    </el-container>
</template>
<script>
export default {
    data() {
        return {
            menulist: [],
            iconsObj: {
                '125': 'iconfont icon-user',
                '103': 'iconfont icon-tijikongjian',
                '101': 'iconfont icon-shangpin',
                '102': 'iconfont icon-danju',
                '145': 'iconfont icon-baobiao'
            },
            isCollapse: false, //是否折疊

            activePath: '' //被激活的鏈接地址
        }
    },
    created() {
        this.getMenuList()
        this.activePath = window.sessionStorage.getItem('activePath')
    },
    methods: {
        logout(){
            window.sessionStorage.clear()
            this.$router.push('/login')
        },
            // 獲取所有的菜單
        async getMenuList() {
            const {data: res} = await this.$http.get('menus')
            // console.log(res)
            if (res.meta.status != 200) return this.$message.error(res.meta.msg)
            this.menulist = res.data
        },
        // 點擊切換菜單折疊與展開
        toggleCollapse(){
            this.isCollapse = !this.isCollapse
        },
        // 保存鏈接的激活狀態
        saveNavState(activePath){
            window.sessionStorage.setItem('activePath',activePath) // 記憶到session, 刷新后不忘記
            this.activePath = activePath
        }
    }
}

</script>
<style lang="less" scoped>
.home-container{
    height: 100%;
}
.el-header{
    background-color: #373D41;
    display: flex;
    justify-content: space-between;
    padding-left: 0;
    align-items: center;
    color: #fff;
    font-size: 20px;
    div{
        display: flex;
        align-items: center;
        span{
            margin-left: 15px;
        }
    }
}
.el-aside{
    background-color: #333744;
    .el-menu{
        border-right: none;
    }
    
}
.el-main{
    background-color: #EAEDF1;
}
.iconfont{
    margin-right: 10px;
}
.toggle-button{
    background-color: #4A5064;
    font-size: 10px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.2em;
    cursor: pointer;
}
</style>

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM