|
@@ -29,7 +29,7 @@
|
|
|
</el-tabs>
|
|
|
<div class="table" v-loading="loading">
|
|
|
<!-- <template v-if="deviceType">-->
|
|
|
- <template v-if="linshi.length >0">
|
|
|
+ <template v-if="linshi.length > 0">
|
|
|
<admMultiTable :currentHeader="currentHeader" :tableData="tableData" :headersStage="headersStage"/>
|
|
|
<Pagination v-if="tableData.length > 0" :paginationList="paginationList"
|
|
|
@handleCurrentChange="handleCurrentChange"
|
|
@@ -383,7 +383,6 @@ export default class extends Vue {
|
|
|
})
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
// 维护阶段 tabs
|
|
@@ -484,14 +483,16 @@ $border: 1px solid #E1E7EA;
|
|
|
}
|
|
|
|
|
|
.content {
|
|
|
- height: 100%;
|
|
|
+ position: relative;
|
|
|
+ height: calc(100% - 140px);
|
|
|
|
|
|
.table {
|
|
|
border-left: $border;
|
|
|
border-right: $border;
|
|
|
border-bottom: $border;
|
|
|
- height: calc(100% - 180px);
|
|
|
+ height: calc(100% - 41px);
|
|
|
padding: 12px;
|
|
|
+ padding-bottom: 50px;
|
|
|
|
|
|
.void {
|
|
|
|
|
@@ -519,9 +520,9 @@ $border: 1px solid #E1E7EA;
|
|
|
}
|
|
|
|
|
|
.adm-pagination {
|
|
|
- right: 40px;
|
|
|
+ right: 10px;
|
|
|
position: absolute;
|
|
|
- bottom: 30px;
|
|
|
+ bottom: 10px;
|
|
|
}
|
|
|
}
|
|
|
|