72 lines
1.5 KiB
Vue
72 lines
1.5 KiB
Vue
<template>
|
|
<el-container>
|
|
<el-header>
|
|
<el-menu
|
|
default-active="2"
|
|
class="el-menu-demo"
|
|
mode="horizontal"
|
|
background-color="#545c64"
|
|
text-color="#fff"
|
|
active-text-color="#ffd04b">
|
|
<el-menu-item index="1">
|
|
<router-link :to="'/index'" class="link-type">
|
|
<span>返回首页</span>
|
|
</router-link>
|
|
</el-menu-item>
|
|
<el-menu-item index="2">
|
|
<router-link :to="'/cart/detail'" class="link-type">
|
|
<span>我的购物车</span>
|
|
</router-link>
|
|
</el-menu-item>
|
|
<el-menu-item index="3" disabled>消息中心</el-menu-item>
|
|
<el-menu-item index="4"><a href="https://www.ele.me" target="_blank">订单管理</a></el-menu-item>
|
|
</el-menu>
|
|
</el-header>
|
|
<el-main>
|
|
<el-row :gutter="20">
|
|
<el-col :span="12" :offset="6">
|
|
<router-view/>
|
|
</el-col>
|
|
</el-row>
|
|
</el-main>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "layoutShop",
|
|
data() {
|
|
return {}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-header, .el-footer {
|
|
background-color: #B3C0D1;
|
|
color: #333;
|
|
text-align: center;
|
|
line-height: 60px;
|
|
}
|
|
.el-main {
|
|
background-color: #E9EEF3;
|
|
color: #333;
|
|
}
|
|
|
|
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>
|