Commit 40f0db0c authored by mahui's avatar mahui

init

parent afb107af
...@@ -961,10 +961,8 @@ $mainHight: 100vh; ...@@ -961,10 +961,8 @@ $mainHight: 100vh;
} }
.topfix { .topfix {
position: fixed; width: 100%;
top: 0; flex-shrink: 0;
box-sizing: border-box;
z-index: 999;
>.el-row { >.el-row {
padding: 0; padding: 0;
.el-col-lg-14 { .el-col-lg-14 {
......
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
<el-main class="main-cont main-right"> <el-main class="main-cont main-right">
<transition :duration="{ enter: 800, leave: 100 }" mode="out-in" name="el-fade-in-linear"> <transition :duration="{ enter: 800, leave: 100 }" mode="out-in" name="el-fade-in-linear">
<div <div
:style="{width: `calc(100% - ${isMobile?'0px':isCollapse?'54px':'220px'})`}"
class="topfix" class="topfix"
> >
<el-row> <el-row>
......
<template> <template>
<div class="authority"> <div class="authority" style="flex: 1;display: flex;flex-direction: column;">
<warning-bar title="注:右上角头像下拉可切换角色" /> <warning-bar title="注:右上角头像下拉可切换角色" />
<div class="gva-table-box"> <div class="gva-table-box">
<div class="gva-btn-list"> <div class="gva-btn-list">
...@@ -9,7 +9,8 @@ ...@@ -9,7 +9,8 @@
:data="tableData" :data="tableData"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}" :tree-props="{children: 'children', hasChildren: 'hasChildren'}"
row-key="authorityId" row-key="authorityId"
style="width: 100%" style="flex: 1;"
height="100%"
> >
<el-table-column label="角色ID" min-width="180" prop="authorityId" /> <el-table-column label="角色ID" min-width="180" prop="authorityId" />
<el-table-column align="left" label="角色名称" min-width="180" prop="authorityName" /> <el-table-column align="left" label="角色名称" min-width="180" prop="authorityName" />
......
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
</div> </div>
<!-- 由于此处菜单跟左侧列表一一对应所以不需要分页 pageSize默认999 --> <!-- 由于此处菜单跟左侧列表一一对应所以不需要分页 pageSize默认999 -->
<el-table :data="tableData" row-key="ID"> <el-table style="flex: 1;"
height="100%" :data="tableData" row-key="ID">
<el-table-column align="left" label="ID" min-width="100" prop="ID" /> <el-table-column align="left" label="ID" min-width="100" prop="ID" />
<el-table-column align="left" label="路由Name" show-overflow-tooltip min-width="160" prop="name" /> <el-table-column align="left" label="路由Name" show-overflow-tooltip min-width="160" prop="name" />
<el-table-column align="left" label="路由Path" show-overflow-tooltip min-width="160" prop="path" /> <el-table-column align="left" label="路由Path" show-overflow-tooltip min-width="160" prop="path" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment