|
@@ -2,7 +2,7 @@
|
|
|
<el-container>
|
|
|
<el-header class="shadow-menu">
|
|
|
<el-row class="admin-header-content">
|
|
|
- <el-col :span="12" >
|
|
|
+ <el-col :span="12">
|
|
|
<div class="admin-logo-content">
|
|
|
<img src="../../assets/manage/manage_logo.png" alt="" />
|
|
|
</div>
|
|
@@ -12,16 +12,10 @@
|
|
|
<!--<el-avatar :size="size" :src="circleUrl"></el-avatar>-->
|
|
|
<!--</div>-->
|
|
|
<!--</el-col>-->
|
|
|
- <el-col :span="12" class="just-right">
|
|
|
- <el-menu
|
|
|
- :default-active="activeIndex"
|
|
|
- class="el-menu-demo"
|
|
|
- mode="horizontal"
|
|
|
- background-color="#00CDDD"
|
|
|
- text-color="#fff"
|
|
|
- active-text-color="#fff"
|
|
|
- >
|
|
|
- <el-submenu index="2" class="rightExit">
|
|
|
+ <el-col :span="12" class="just-right">
|
|
|
+ <el-menu :default-active="activeIndex" class="el-menu-demo" mode="horizontal" background-color="#00CDDD"
|
|
|
+ text-color="#fff" active-text-color="#fff">
|
|
|
+ <el-submenu :popper-append-to-body="false" index="2" class="rightExit">
|
|
|
<template slot="title" :size="size" :src="circleUrl">
|
|
|
{{ Name }}
|
|
|
</template>
|
|
@@ -33,36 +27,21 @@
|
|
|
</el-row>
|
|
|
</el-header>
|
|
|
<el-container class="main-container">
|
|
|
- <el-aside style="width: auto">
|
|
|
-
|
|
|
- <el-menu
|
|
|
- class="el-menu-vertical-demo shadow-menu aside-menu"
|
|
|
- :router="true"
|
|
|
- :default-active=" menuActive || active"
|
|
|
- :collapse="isCollapse"
|
|
|
- text-color="#333"
|
|
|
- active-text-color="#fff"
|
|
|
- @select="selectMenu"
|
|
|
- >
|
|
|
-
|
|
|
-
|
|
|
- <el-submenu
|
|
|
- v-for="item in menuList"
|
|
|
- :key="item.id"
|
|
|
- :index="item.path"
|
|
|
- v-if="item.child && item.child.length && item.showItem > 0"
|
|
|
- >
|
|
|
+ <el-aside style="width: auto;overflow: hidden; height: 1054px;">
|
|
|
+
|
|
|
+ <el-menu class="el-menu-vertical-demo shadow-menu aside-menu" :router="true"
|
|
|
+ :default-active="menuActive || active" :collapse="isCollapse" text-color="#333" active-text-color="#fff"
|
|
|
+ @select="selectMenu">
|
|
|
+
|
|
|
+
|
|
|
+ <el-submenu v-for="item in menuList" :key="item.id" :index="item.path"
|
|
|
+ v-if="item.child && item.child.length && item.showItem > 0">
|
|
|
<template slot="title">
|
|
|
<i :class="item.icon"></i>
|
|
|
<span>{{ item.name }}</span>
|
|
|
</template>
|
|
|
<el-menu-item-group>
|
|
|
- <el-menu-item
|
|
|
- v-for="el in item.child"
|
|
|
- :key="el.id"
|
|
|
- :index="el.path"
|
|
|
- v-if="el.showItem"
|
|
|
- >
|
|
|
+ <el-menu-item v-for="el in item.child" :key="el.id" :index="el.path" v-if="el.showItem">
|
|
|
<span style="margin-left: 10px">{{ el.name }}</span>
|
|
|
</el-menu-item>
|
|
|
</el-menu-item-group>
|
|
@@ -114,7 +93,7 @@
|
|
|
<el-breadcrumb-item v-if="crumbChild">
|
|
|
{{ crumbChild }}
|
|
|
</el-breadcrumb-item>
|
|
|
- <el-breadcrumb-item v-if="sacleListName"> {{sacleListName}}</el-breadcrumb-item>
|
|
|
+ <el-breadcrumb-item v-if="sacleListName"> {{ sacleListName }}</el-breadcrumb-item>
|
|
|
</el-breadcrumb>
|
|
|
</el-header>
|
|
|
|
|
@@ -126,38 +105,22 @@
|
|
|
|
|
|
</el-container>
|
|
|
</el-container>
|
|
|
- <el-footer style='padding-left:0;padding-right:0'><Footer /></el-footer>
|
|
|
+ <!-- <el-footer style='padding-left:0;padding-right:0;height: 0px;'> -->
|
|
|
+ <Footer />
|
|
|
+ <!-- </el-footer> -->
|
|
|
|
|
|
<!---lxh-修改密码-->
|
|
|
<el-dialog title="修改密码" :visible.sync="dialogVisible" :close-on-click-modal="false" width="40%">
|
|
|
<div>
|
|
|
- <el-form
|
|
|
- :model="ruleForm"
|
|
|
- :rules="rules"
|
|
|
- ref="ruleForm"
|
|
|
- label-width="150px"
|
|
|
- class="demo-ruleForm"
|
|
|
- >
|
|
|
+ <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="150px" class="demo-ruleForm">
|
|
|
<el-form-item label="请输入旧密码" prop="oldpass">
|
|
|
- <el-input
|
|
|
- type="password"
|
|
|
- v-model="ruleForm.oldpass"
|
|
|
- autocomplete="off"
|
|
|
- />
|
|
|
+ <el-input type="password" v-model="ruleForm.oldpass" autocomplete="off" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="请输入新密码" prop="pass">
|
|
|
- <el-input
|
|
|
- type="password"
|
|
|
- v-model="ruleForm.pass"
|
|
|
- autocomplete="off"
|
|
|
- />
|
|
|
+ <el-input type="password" v-model="ruleForm.pass" autocomplete="off" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="确认新密码" prop="checkPass">
|
|
|
- <el-input
|
|
|
- type="password"
|
|
|
- v-model="ruleForm.checkPass"
|
|
|
- autocomplete="off"
|
|
|
- />
|
|
|
+ <el-input type="password" v-model="ruleForm.checkPass" autocomplete="off" />
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item>
|
|
@@ -170,13 +133,13 @@
|
|
|
</el-container>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import {mapGetters,mapActions} from "vuex"
|
|
|
+import { mapGetters, mapActions } from "vuex"
|
|
|
export default {
|
|
|
name: "ContainerSys",
|
|
|
-computed: {
|
|
|
- ...mapGetters(['sacleListName']),
|
|
|
- ...mapGetters(['menuActive']),
|
|
|
- },
|
|
|
+ computed: {
|
|
|
+ ...mapGetters(['sacleListName']),
|
|
|
+ ...mapGetters(['menuActive']),
|
|
|
+ },
|
|
|
data() {
|
|
|
var systemVersion = process.env.VUE_APP_VERSION;
|
|
|
//修改密码***
|
|
@@ -292,10 +255,10 @@ computed: {
|
|
|
"b80bb7740288fda1f201890375a60c8f"
|
|
|
);
|
|
|
this.phone = sessionStorage.getItem(
|
|
|
- "f7a42fe7211f98ac7a60a285ac3a9e87"
|
|
|
+ "f7a42fe7211f98ac7a60a285ac3a9e87"
|
|
|
);
|
|
|
this.userType = sessionStorage.getItem(
|
|
|
- "f7a42fe7211f98ac7a60a285ac3a9528"
|
|
|
+ "f7a42fe7211f98ac7a60a285ac3a9528"
|
|
|
);
|
|
|
|
|
|
console.log('--------------------------------------------------')
|
|
@@ -319,168 +282,168 @@ computed: {
|
|
|
this.selectMenu(this.$route.path);
|
|
|
},
|
|
|
methods: {
|
|
|
- ...mapActions({
|
|
|
- setSacleListName:"setSacleListName",
|
|
|
- setMenuActive:"setMenuActive"
|
|
|
+ ...mapActions({
|
|
|
+ setSacleListName: "setSacleListName",
|
|
|
+ setMenuActive: "setMenuActive"
|
|
|
}),
|
|
|
|
|
|
initMenus() {
|
|
|
- this.menuList = [
|
|
|
+ this.menuList = [
|
|
|
|
|
|
- {
|
|
|
- id: 0,
|
|
|
- name: "首页",
|
|
|
- icon: "el-icon-s-home",
|
|
|
+ {
|
|
|
+ id: 0,
|
|
|
+ name: "首页",
|
|
|
+ icon: "el-icon-s-home",
|
|
|
// path: "/ContainerSys/AdminHome",
|
|
|
- path: ['2', '3'].includes(this.userType) ? "/ContainerSys/AdminHomeS" :"/ContainerSys/AdminHome",
|
|
|
- showItem: true,
|
|
|
- child: [],
|
|
|
- },
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- name: "用户管理",
|
|
|
- icon: "el-icon-user-solid",
|
|
|
- path: "1",
|
|
|
- showItem: ['2', '3'].includes(this.userType),
|
|
|
- child: [
|
|
|
- {
|
|
|
- id: "1-1",
|
|
|
- name: "学生管理",
|
|
|
- parentName: "用户管理",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/UserManage",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- {
|
|
|
- id: "1-2",
|
|
|
- name: "年级管理",
|
|
|
- parentName: "用户管理",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/UserGroupManagement",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- {
|
|
|
- id: "1-3",
|
|
|
- name: "管理员管理",
|
|
|
- parentName: "用户管理",
|
|
|
- styleCss: "el-icon-s-grid",
|
|
|
- path: "/ContainerSys/AdminManage",
|
|
|
- showItem: this.userType == 3,
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- id: 2,
|
|
|
- name: "测试记录",
|
|
|
- icon: "el-icon-s-order",
|
|
|
- path: "2",
|
|
|
- showItem: ['2', '3'].includes(this.userType),
|
|
|
- child: [
|
|
|
- {
|
|
|
- id: "2-1",
|
|
|
- name: "学生测试记录",
|
|
|
- parentName: "测试记录",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/UserRecords",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- {
|
|
|
- id: "2-2",
|
|
|
- name: "量表测试记录",
|
|
|
- parentName: "测试记录",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/SacleList",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- {
|
|
|
- id: "2-3",
|
|
|
- name: "认知任务测试记录",
|
|
|
- parentName: "测试记录",
|
|
|
- styleCss: "el-icon-s-grid",
|
|
|
- path: "/ContainerSys/CognitiveTaskList",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- id: 3,
|
|
|
- name: "学校管理",
|
|
|
- icon: "el-icon-s-order",
|
|
|
- path: "3",
|
|
|
- showItem: this.userType === '4',
|
|
|
- child: [
|
|
|
- {
|
|
|
- id: "3-1",
|
|
|
- name: "学校信息",
|
|
|
- parentName: "学校管理",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/InstitutionInfo",
|
|
|
- showItem: this.userType === '4',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- id: 4,
|
|
|
- name: "系统管理",
|
|
|
- icon: "el-icon-s-order",
|
|
|
- path: "4",
|
|
|
- showItem: ['2', '3'].includes(this.userType),
|
|
|
- child: [
|
|
|
- {
|
|
|
- id: "4-1",
|
|
|
- name: "操作日志管理",
|
|
|
- parentName: "系统管理",
|
|
|
- styleCss: "el-icon-s-grid",
|
|
|
- path: "/ContainerSys/OperationLog",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- {
|
|
|
- id: "4-2",
|
|
|
- name: "测试计划",
|
|
|
- parentName: "系统管理",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/testPlan",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- {
|
|
|
- id: "4-3",
|
|
|
- name: "历史计划",
|
|
|
- parentName: "系统管理",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/planHistory",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- id: 5,
|
|
|
- name: "量表管理",
|
|
|
- icon: "el-icon-s-order",
|
|
|
- path: "5",
|
|
|
- showItem: ['2', '3'].includes(this.userType),
|
|
|
- child: [
|
|
|
- {
|
|
|
- id: "5-1",
|
|
|
- name: "自定义量表",
|
|
|
- parentName: "量表管理",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/ScaleManagement",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- {
|
|
|
- id: "5-2",
|
|
|
- name: "量表预警",
|
|
|
- parentName: "量表管理",
|
|
|
- styleCss: "el-icon-s-custom",
|
|
|
- path: "/ContainerSys/scaleWarn",
|
|
|
- showItem: true,
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- ]
|
|
|
+ path: ['2', '3'].includes(this.userType) ? "/ContainerSys/AdminHomeS" : "/ContainerSys/AdminHome",
|
|
|
+ showItem: true,
|
|
|
+ child: [],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 1,
|
|
|
+ name: "用户管理",
|
|
|
+ icon: "el-icon-user-solid",
|
|
|
+ path: "1",
|
|
|
+ showItem: ['2', '3'].includes(this.userType),
|
|
|
+ child: [
|
|
|
+ {
|
|
|
+ id: "1-1",
|
|
|
+ name: "学生管理",
|
|
|
+ parentName: "用户管理",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/UserManage",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "1-2",
|
|
|
+ name: "年级管理",
|
|
|
+ parentName: "用户管理",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/UserGroupManagement",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "1-3",
|
|
|
+ name: "管理员管理",
|
|
|
+ parentName: "用户管理",
|
|
|
+ styleCss: "el-icon-s-grid",
|
|
|
+ path: "/ContainerSys/AdminManage",
|
|
|
+ showItem: this.userType == 3,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2,
|
|
|
+ name: "测试记录",
|
|
|
+ icon: "el-icon-s-order",
|
|
|
+ path: "2",
|
|
|
+ showItem: ['2', '3'].includes(this.userType),
|
|
|
+ child: [
|
|
|
+ {
|
|
|
+ id: "2-1",
|
|
|
+ name: "学生测试记录",
|
|
|
+ parentName: "测试记录",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/UserRecords",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "2-2",
|
|
|
+ name: "量表测试记录",
|
|
|
+ parentName: "测试记录",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/SacleList",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "2-3",
|
|
|
+ name: "认知任务测试记录",
|
|
|
+ parentName: "测试记录",
|
|
|
+ styleCss: "el-icon-s-grid",
|
|
|
+ path: "/ContainerSys/CognitiveTaskList",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 3,
|
|
|
+ name: "学校管理",
|
|
|
+ icon: "el-icon-s-order",
|
|
|
+ path: "3",
|
|
|
+ showItem: this.userType === '4',
|
|
|
+ child: [
|
|
|
+ {
|
|
|
+ id: "3-1",
|
|
|
+ name: "学校信息",
|
|
|
+ parentName: "学校管理",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/InstitutionInfo",
|
|
|
+ showItem: this.userType === '4',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 4,
|
|
|
+ name: "系统管理",
|
|
|
+ icon: "el-icon-s-order",
|
|
|
+ path: "4",
|
|
|
+ showItem: ['2', '3'].includes(this.userType),
|
|
|
+ child: [
|
|
|
+ {
|
|
|
+ id: "4-1",
|
|
|
+ name: "操作日志管理",
|
|
|
+ parentName: "系统管理",
|
|
|
+ styleCss: "el-icon-s-grid",
|
|
|
+ path: "/ContainerSys/OperationLog",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "4-2",
|
|
|
+ name: "测试计划",
|
|
|
+ parentName: "系统管理",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/testPlan",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "4-3",
|
|
|
+ name: "历史计划",
|
|
|
+ parentName: "系统管理",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/planHistory",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 5,
|
|
|
+ name: "量表管理",
|
|
|
+ icon: "el-icon-s-order",
|
|
|
+ path: "5",
|
|
|
+ showItem: ['2', '3'].includes(this.userType),
|
|
|
+ child: [
|
|
|
+ {
|
|
|
+ id: "5-1",
|
|
|
+ name: "自定义量表",
|
|
|
+ parentName: "量表管理",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/ScaleManagement",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "5-2",
|
|
|
+ name: "量表预警",
|
|
|
+ parentName: "量表管理",
|
|
|
+ styleCss: "el-icon-s-custom",
|
|
|
+ path: "/ContainerSys/scaleWarn",
|
|
|
+ showItem: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ]
|
|
|
},
|
|
|
|
|
|
- changeMenu: function() {
|
|
|
+ changeMenu: function () {
|
|
|
this.isCollapse = !this.isCollapse;
|
|
|
},
|
|
|
//匹配获取页签名称-2020-03-17 lwl
|
|
@@ -497,7 +460,7 @@ computed: {
|
|
|
this.crumbParent = i.parentName;
|
|
|
this.crumbChild = i.name;
|
|
|
}
|
|
|
- if( param !== "/ContainerSys/SacleList"){
|
|
|
+ if (param !== "/ContainerSys/SacleList") {
|
|
|
this.setSacleListName(null)
|
|
|
}
|
|
|
});
|
|
@@ -533,15 +496,15 @@ computed: {
|
|
|
if (this.institutionNo && this.institutionNo !== 'null') {
|
|
|
data.institutionNo = this.institutionNo
|
|
|
}
|
|
|
- this.$http.post("system/logout", data,(res) => {
|
|
|
- if( res && res.code == 200 ){
|
|
|
+ this.$http.post("system/logout", data, (res) => {
|
|
|
+ if (res && res.code == 200) {
|
|
|
this.$message({
|
|
|
message: "已成功退出登录",
|
|
|
type: "success",
|
|
|
})
|
|
|
localStorage.clear()
|
|
|
sessionStorage.clear()
|
|
|
- this.$router.push({ path: "/",})
|
|
|
+ this.$router.push({ path: "/", })
|
|
|
} else {
|
|
|
this.$message({
|
|
|
message: res.msg,
|
|
@@ -649,7 +612,8 @@ computed: {
|
|
|
::v-deep .el-container {
|
|
|
|
|
|
&.main-container {
|
|
|
- height: calc(100vh - 96px);
|
|
|
+ height: 100%;
|
|
|
+ width: 100%;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
@@ -667,9 +631,11 @@ computed: {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.el-menu-vertical-demo:not(.el-menu--collapse) {
|
|
|
width: 200px;
|
|
|
min-height: 400px;
|
|
|
+ height: 100%;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
@@ -727,12 +693,15 @@ computed: {
|
|
|
height: calc(100vh - 96px);
|
|
|
text-align: left;
|
|
|
}
|
|
|
+
|
|
|
.aside-menu .el-menu-item.is-active {
|
|
|
background: #00CDDD !important;
|
|
|
}
|
|
|
+
|
|
|
.el-menu-item-group .el-menu-item.is-active {
|
|
|
background: #00CDDD !important;
|
|
|
}
|
|
|
+
|
|
|
.fade-enter {
|
|
|
opacity: 0;
|
|
|
}
|
|
@@ -745,6 +714,7 @@ computed: {
|
|
|
.fade-enter-active {
|
|
|
transition: opacity 0s;
|
|
|
}
|
|
|
+
|
|
|
/*.rightExit {*/
|
|
|
/*float: right !important;*/
|
|
|
/*}*/
|
|
@@ -767,14 +737,16 @@ computed: {
|
|
|
.admin-header-content {
|
|
|
background: #00CDDD;
|
|
|
height: 100% !important;
|
|
|
- display: flex;
|
|
|
+ display: flex;
|
|
|
flex-direction: row;
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
}
|
|
|
+
|
|
|
.admin-header-content .el-col {
|
|
|
height: 100% !important;
|
|
|
}
|
|
|
+
|
|
|
.admin-header-content .admin-logo-content {
|
|
|
/*box-sizing: border-box;*/
|
|
|
/*width: 100%;*/
|
|
@@ -783,10 +755,12 @@ computed: {
|
|
|
height: 45px;
|
|
|
padding: 8px 0 8px 20px;
|
|
|
}
|
|
|
+
|
|
|
.admin-header-content .admin-logo-content img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
+
|
|
|
.admin-header-content .admin-head-content {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
@@ -796,24 +770,37 @@ computed: {
|
|
|
align-items: center;
|
|
|
flex: 1;
|
|
|
}
|
|
|
+
|
|
|
.admin-header-content .el-menu-demo {
|
|
|
height: 100%;
|
|
|
+
|
|
|
+ .rightExit {
|
|
|
+ // position: absolute !important;
|
|
|
+ // top: 0px !important;
|
|
|
+ // left: 0px !important;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
-.el-menu--horizontal > .el-submenu .el-submenu__title,
|
|
|
-/deep/.el-menu--horizontal > .el-submenu.is-active .el-submenu__title {
|
|
|
+
|
|
|
+.el-menu--horizontal>.el-submenu .el-submenu__title,
|
|
|
+/deep/.el-menu--horizontal>.el-submenu.is-active .el-submenu__title {
|
|
|
border-bottom: none !important;
|
|
|
}
|
|
|
-/deep/.el-menu--horizontal > .el-submenu .el-submenu__icon-arrow {
|
|
|
+
|
|
|
+/deep/.el-menu--horizontal>.el-submenu .el-submenu__icon-arrow {
|
|
|
color: #fff;
|
|
|
}
|
|
|
-
|
|
|
+// .el-menu--horizontal {
|
|
|
+// border-right: none;
|
|
|
+// left: 0px !important;
|
|
|
+// }
|
|
|
.el-menu.el-menu--horizontal {
|
|
|
border-bottom: none;
|
|
|
}
|
|
|
|
|
|
-.just-right{
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- justify-content: flex-end;
|
|
|
+.just-right {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: flex-end;
|
|
|
}
|
|
|
</style>
|