dashboard

This commit is contained in:
chenjianan
2019-07-26 08:38:54 +08:00
parent 253a8c2d94
commit f14f5d46e2
5 changed files with 20 additions and 12 deletions

View File

@@ -24,8 +24,8 @@ export default {
<style scoped>
.app-main {
/*50 = navbar */
min-height: calc(100% - 50px);
position: relative;
overflow: hidden;
min-height:calc(100vh - 50px);background: url('../../../../static/bg.jpg') repeat;
}
</style>

View File

@@ -1,5 +1,5 @@
<template>
<el-menu class="navbar" mode="horizontal">
<el-menu class="navbar" mode="horizontal" style="background: rgb(163,173,182)!important;">
<hamburger :toggle-click="toggleSideBar" :is-active="sidebar.opened" class="hamburger-container"/>
<breadcrumb />
<el-dropdown class="avatar-container" trigger="click">

View File

@@ -1,6 +1,6 @@
<template>
<div class="tags-view-container">
<scroll-pane ref="scrollPane" class="tags-view-wrapper">
<scroll-pane ref="scrollPane" class="tags-view-wrapper" style="background: rgb(163,173,182)!important;">
<router-link v-for="tag in Array.from(visitedViews)" ref="tag" :class="isActive(tag)?'active':''" :to="tag.path" :key="tag.path" class="tags-view-item" @contextmenu.prevent.native="openMenu(tag,$event)" >
{{ tag.title }}
<span class="el-icon-close" @click.prevent.stop="closeSelectedTag(tag)"/>