|
@@ -10,14 +10,14 @@
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
- <div class="sidebarCustom">
|
|
|
|
- <SidebarCustom ref="sidebarCus" @change="handleChange">
|
|
|
|
|
|
+ <div class="sidebarCustom" v-show="showSidebar">
|
|
|
|
+ <SidebarCustom :key="showSidebarKey" :width="222">
|
|
<template #left>
|
|
<template #left>
|
|
- <legendList class="m-legend-list" :chiceStatus="chiceStatus"></legendList>
|
|
|
|
|
|
+ <legendList class="m-legend-list" style="width: 220px" :chiceStatus="chiceStatus"></legendList>
|
|
<!-- <div class="m-legend-list"></div> -->
|
|
<!-- <div class="m-legend-list"></div> -->
|
|
</template>
|
|
</template>
|
|
<template #right>
|
|
<template #right>
|
|
- <div style="font-size: 14px; width: 20px"></div>
|
|
|
|
|
|
+ <div style="font-size: 14px; width: 100px"></div>
|
|
</template>
|
|
</template>
|
|
</SidebarCustom>
|
|
</SidebarCustom>
|
|
</div>
|
|
</div>
|
|
@@ -82,6 +82,8 @@ export default {
|
|
chiceStatus: -1, //选中按钮状态
|
|
chiceStatus: -1, //选中按钮状态
|
|
direction: "ltr",
|
|
direction: "ltr",
|
|
leftData,
|
|
leftData,
|
|
|
|
+ showSidebar: false, //是否显示SideBar
|
|
|
|
+ showSidebarKey: new Date().getTime(), //SideBar的key值
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -92,15 +94,14 @@ export default {
|
|
handleClose() {
|
|
handleClose() {
|
|
this.drawer = false;
|
|
this.drawer = false;
|
|
},
|
|
},
|
|
- handleChange(leftWidth, leftShow) {
|
|
|
|
- console.log(leftWidth, leftShow);
|
|
|
|
- },
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 点击左侧固定栏,显隐sidebar
|
|
|
|
+ */
|
|
openTool(val) {
|
|
openTool(val) {
|
|
if (val != this.chiceStatus) {
|
|
if (val != this.chiceStatus) {
|
|
this.chiceStatus = val;
|
|
this.chiceStatus = val;
|
|
if (this.drawer) {
|
|
if (this.drawer) {
|
|
this.drawer = false;
|
|
this.drawer = false;
|
|
- 4;
|
|
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
this.drawer = true;
|
|
this.drawer = true;
|
|
}, 300);
|
|
}, 300);
|
|
@@ -111,6 +112,9 @@ export default {
|
|
this.drawer = !this.drawer;
|
|
this.drawer = !this.drawer;
|
|
this.chiceStatus = -1;
|
|
this.chiceStatus = -1;
|
|
}
|
|
}
|
|
|
|
+ // 左侧固定栏位有选中时,显示sideBar
|
|
|
|
+ this.showSidebar = Boolean(this.chiceStatus !== -1);
|
|
|
|
+ this.showSidebarKey = new Date().getTime();
|
|
},
|
|
},
|
|
choiceStatus() {
|
|
choiceStatus() {
|
|
this.chiceStatus = 0;
|
|
this.chiceStatus = 0;
|
|
@@ -176,23 +180,13 @@ li {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.sidebarCustom {
|
|
.sidebarCustom {
|
|
- // width: 240px;
|
|
|
|
- // height: calc(100% - 2px);
|
|
|
|
- // /deep/ .p-sidebar-custom-btn-rotate,
|
|
|
|
- // /deep/ .p-sidebar-custom-bar-change-size {
|
|
|
|
- // left: 219px !important;
|
|
|
|
- // }
|
|
|
|
- // /deep/ .p-sidebar-left {
|
|
|
|
- // width: 220px !important;
|
|
|
|
- // }
|
|
|
|
- // /deep/ .p-sidebar-right {
|
|
|
|
- // // width: calc(100% - 220px) !important;
|
|
|
|
- // }
|
|
|
|
.m-legend-list {
|
|
.m-legend-list {
|
|
- width: 278px;
|
|
|
|
- // height: calc(100% - 20px);
|
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
+ /deep/ .p-sidebar-custom-btn {
|
|
|
|
+ top: 50% !important;
|
|
|
|
+ // left: 15px !important;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.el-drawer__wrapper {
|
|
.el-drawer__wrapper {
|