|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="pb_content" style="background: unset">
|
|
|
|
|
|
|
+ <div class="pb_content" style="background: unset;height: 100%;">
|
|
|
<div class="sm_box">
|
|
<div class="sm_box">
|
|
|
<div class="sm_left">
|
|
<div class="sm_left">
|
|
|
<div class="nav" @click="
|
|
<div class="nav" @click="
|
|
@@ -76,7 +76,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="pb_content_body">
|
|
|
|
|
|
|
+ <div class="pb_content_body" style="overflow: auto;">
|
|
|
<div class="student_table">
|
|
<div class="student_table">
|
|
|
<el-table ref="table" :data="tableData" border :height="tableHeight" :fit="true" v-loading="isLoading"
|
|
<el-table ref="table" :data="tableData" border :height="tableHeight" :fit="true" v-loading="isLoading"
|
|
|
style="width: 100%" :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
|
|
style="width: 100%" :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
|
|
@@ -1490,17 +1490,23 @@ export default {
|
|
|
|
|
|
|
|
.pb_content_body {
|
|
.pb_content_body {
|
|
|
width: 100% !important;
|
|
width: 100% !important;
|
|
|
|
|
+ /* flex: 1; */
|
|
|
|
|
+ /* overflow: auto; */
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.sm_box {
|
|
.sm_box {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
width: calc(100% - 20px);
|
|
width: calc(100% - 20px);
|
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
|
|
|
+ height: 100%;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.sm_right {
|
|
.sm_right {
|
|
|
width: calc(100% - 210px);
|
|
width: calc(100% - 210px);
|
|
|
margin-left: 210px;
|
|
margin-left: 210px;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.sm_left {
|
|
.sm_left {
|