-
+
+
@@ -101,7 +148,8 @@ import PanelGroup from './dashboard/PanelGroup'
// import LineChart from './dashboard/LineChart'
import RadarChart from '@/components/Echarts/RadarChart'
import PieChart from '@/components/Echarts/PieChart'
-import BarChart from '@/components/Echarts/BarChart'
+// import BarChart from '@/components/Echarts/BarChart'
+import data1 from './data1.json'
const lineChartData = {
newVisitis: {
@@ -129,17 +177,24 @@ export default {
PanelGroup,
// LineChart,
RadarChart,
- PieChart,
- BarChart
+ PieChart
+ // ,
+ // BarChart
},
data() {
return {
lineChartData: lineChartData.newVisitis
}
},
+ created() {
+ this.getData()
+ },
methods: {
handleSetLineChartData(type) {
this.lineChartData = lineChartData[type]
+ },
+ getData() {
+ this.tableData = data1.rows
}
}
}
@@ -190,8 +245,8 @@ export default {
z-index: 11;
// width: calc(100vw - 545px);
width: 100%;
- height: 90px;
- min-height: 90px;
+ // height: 90px;
+ // min-height: 90px;
padding: 0;
li{
display: flex;
@@ -247,7 +302,7 @@ export default {
}
}
.search-area {
- height: 158px;
+ height: 100%;
margin: 0;
display: flex;
align-items: center;
@@ -255,12 +310,20 @@ export default {
& .search-input{
width: 796px;
}
- // & .el-select .el-input {
- // width: 130px;
- // }
- // & .input-with-select .el-input-group__prepend {
- // background-color: #fff;
- // }
}
-
+.el-col {
+ height: 100%;
+}
+.container-left, .container-right, .container-wrap, .el-card, .header-container-wrap{
+ min-height: 100%;
+}
+.warehose-el-table ::v-deep.el-table__header-wrapper{
+ box-shadow: inset 0px 0px 6px 1px #339CFF;
+ background: none !important;
+}
+.container-wrap{
+ min-height: auto;
+ height: 100%;
+ overflow: hidden;
+}