|
@@ -11,31 +11,15 @@
|
|
|
</ul>
|
|
|
</div>
|
|
|
<div class="sidebarCustom" v-show="showSidebar">
|
|
|
- <SidebarCustom :key="showSidebarKey" :width="222">
|
|
|
+ <SidebarCustom :key="showSidebarKey" :show="showSidebarLeft" :width="222">
|
|
|
<template #left>
|
|
|
<legendList class="m-legend-list" style="width: 220px" :chiceStatus="chiceStatus"></legendList>
|
|
|
- <!-- <div class="m-legend-list"></div> -->
|
|
|
</template>
|
|
|
<template #right>
|
|
|
<div style="font-size: 14px; width: 100px"></div>
|
|
|
</template>
|
|
|
</SidebarCustom>
|
|
|
</div>
|
|
|
- <!-- <el-drawer
|
|
|
- size="220px"
|
|
|
- :with-header="false"
|
|
|
- :destroy-on-close="true"
|
|
|
- :visible.sync="drawer"
|
|
|
- :direction="direction"
|
|
|
- :modal="false"
|
|
|
- :modal-append-to-body="false"
|
|
|
- :show-close="true"
|
|
|
- :before-close="handleClose"
|
|
|
- :wrapperClosable="false"
|
|
|
- custom-class="drawer-box"
|
|
|
- >
|
|
|
- <legendList :chiceStatus="chiceStatus"></legendList>
|
|
|
- </el-drawer> -->
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -78,48 +62,37 @@ export default {
|
|
|
components: { legendList, SidebarCustom },
|
|
|
data() {
|
|
|
return {
|
|
|
- drawer: false,
|
|
|
chiceStatus: -1, //选中按钮状态
|
|
|
- direction: "ltr",
|
|
|
leftData,
|
|
|
showSidebar: false, //是否显示SideBar
|
|
|
showSidebarKey: new Date().getTime(), //SideBar的key值
|
|
|
+ showSidebarLeft: true,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
- window.vm = this;
|
|
|
+ // window.vm = this;
|
|
|
},
|
|
|
methods: {
|
|
|
...mapMutations(["SETCHOICELEHEND"]),
|
|
|
- handleClose() {
|
|
|
- this.drawer = false;
|
|
|
- },
|
|
|
/**
|
|
|
* 点击左侧固定栏,显隐sidebar
|
|
|
*/
|
|
|
openTool(val) {
|
|
|
+ // 左侧固定栏位有选中时,显示sideBar
|
|
|
if (val != this.chiceStatus) {
|
|
|
this.chiceStatus = val;
|
|
|
- if (this.drawer) {
|
|
|
- this.drawer = false;
|
|
|
- setTimeout(() => {
|
|
|
- this.drawer = true;
|
|
|
- }, 300);
|
|
|
- } else {
|
|
|
- this.drawer = true;
|
|
|
- }
|
|
|
+ this.showSidebarLeft = true;
|
|
|
+ this.showSidebar = true;
|
|
|
+ this.showSidebarKey = new Date().getTime();
|
|
|
} else {
|
|
|
- this.drawer = !this.drawer;
|
|
|
+ // 点击相同的TabBar,隐藏sidebar
|
|
|
this.chiceStatus = -1;
|
|
|
+ this.showSidebarLeft = false;
|
|
|
+ // sideBar有300ms动画
|
|
|
+ setTimeout(() => {
|
|
|
+ this.showSidebar = false;
|
|
|
+ }, 300);
|
|
|
}
|
|
|
- // 左侧固定栏位有选中时,显示sideBar
|
|
|
- this.showSidebar = Boolean(this.chiceStatus !== -1);
|
|
|
- this.showSidebarKey = new Date().getTime();
|
|
|
- },
|
|
|
- choiceStatus() {
|
|
|
- this.chiceStatus = 0;
|
|
|
- this.drawer = false;
|
|
|
- this.SETCHOICELEHEND("");
|
|
|
},
|
|
|
},
|
|
|
};
|