|
@@ -1,6 +1,20 @@
|
|
|
<template>
|
|
|
<div class="steelChemical-container" id="box">
|
|
|
- <div class="left-cont minHeight" id="left">
|
|
|
+ <span
|
|
|
+ v-show="!isLeftWrapShow"
|
|
|
+ class="slide-btn-icon slide-right"
|
|
|
+ @click="isLeftWrapShow = !isLeftWrapShow"
|
|
|
+ >
|
|
|
+ <i :class="{'el-icon-d-arrow-left':isLeftWrapShow,'el-icon-d-arrow-right':!isLeftWrapShow}"></i>
|
|
|
+ </span>
|
|
|
+ <div class="left-cont minHeight" id="left" v-show="isLeftWrapShow">
|
|
|
+ <span
|
|
|
+ v-show="isLeftWrapShow"
|
|
|
+ class="slide-btn-icon slide-left"
|
|
|
+ @click="isLeftWrapShow = !isLeftWrapShow"
|
|
|
+ >
|
|
|
+ <i :class="{'el-icon-d-arrow-left':isLeftWrapShow,'el-icon-d-arrow-right':!isLeftWrapShow}"></i>
|
|
|
+ </span>
|
|
|
<div class="left-top">
|
|
|
<div>
|
|
|
<el-button v-permission="permissionBtn.dataSourcePermission.mysteelData_add"
|
|
@@ -246,6 +260,7 @@ export default {
|
|
|
components: { lzTable, mDialog, targetDialog },
|
|
|
data() {
|
|
|
return {
|
|
|
+ isLeftWrapShow:true,
|
|
|
dataloading: false,
|
|
|
rightShow: false,
|
|
|
exportBase:
|
|
@@ -651,6 +666,15 @@ export default {
|
|
|
<style lang="scss" scoped>
|
|
|
.steelChemical-container {
|
|
|
display: flex;
|
|
|
+ position: relative;
|
|
|
+ .slide-btn-icon{
|
|
|
+ &.slide-left{
|
|
|
+ right:0;
|
|
|
+ }
|
|
|
+ &.slide-right{
|
|
|
+ left: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
* {
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
@@ -722,12 +746,13 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.right-cont {
|
|
|
- width: 82%;
|
|
|
+ flex:1;
|
|
|
+ overflow-x: auto;
|
|
|
padding: 30px;
|
|
|
position: relative;
|
|
|
.right-box {
|
|
|
max-width: 100%;
|
|
|
- max-height: calc(100vh - 230px);
|
|
|
+ max-height: calc(100vh - 240px);
|
|
|
border-left: 1px solid #dcdfe6;
|
|
|
border-right: 1px solid #dcdfe6;
|
|
|
overflow: auto;
|
|
@@ -751,9 +776,12 @@ export default {
|
|
|
margin-top: 20px;
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
+ gap:20px;
|
|
|
+ .el-button{
|
|
|
+ margin-left: 0 !important;
|
|
|
+ }
|
|
|
.frequency-btn {
|
|
|
width: 112px;
|
|
|
- margin: 0 30px 10px 0;
|
|
|
}
|
|
|
}
|
|
|
}
|