|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="realtime-data">
|
|
|
+ <div class="realtime-data" style="height: auto">
|
|
|
<navigation-name :msg="companyName" show-time show-other>
|
|
|
<div style="margin-left: 20px;">
|
|
|
<el-select
|
|
@@ -25,6 +25,7 @@
|
|
|
<!-- <div>{{ tableLoading }}</div>-->
|
|
|
<el-table
|
|
|
:data="tableData"
|
|
|
+ height="100%"
|
|
|
:span-method="objectSpanMethod"
|
|
|
:header-cell-style="{
|
|
|
background: '#BFBFBF',
|
|
@@ -44,7 +45,7 @@
|
|
|
row-key="id"
|
|
|
border
|
|
|
stripe
|
|
|
- style="width: 100%">
|
|
|
+ style="width: 100%; background-color: inherit;min-height: 820px;">
|
|
|
<el-table-column
|
|
|
v-for="(item, index) in tableColumns"
|
|
|
:key="index"
|
|
@@ -245,6 +246,7 @@ export default {
|
|
|
<style lang="less" scoped>
|
|
|
.realtime-data {
|
|
|
padding: 0 40px;
|
|
|
+ height: 80vh;
|
|
|
|
|
|
.el-table {
|
|
|
box-shadow: 1px 1px 1px #BFBFBF, -1px -1px -1px #666666;
|