【Vue2 + ElementUI】拖动侧边栏以便自由调整左右两侧的宽度

  1. 效果
    (1)拖动前
    在这里插入图片描述
    (2)拖动后
    在这里插入图片描述

  2. 主要代码

<template>
	<el-row class="contnet" :gutter="20">
		// 1. 左侧树
		<el-col id="left-tree" class="left-tree" :offset="0" :span="6">
			// 目录树(不是该文章的主要解析项,不多介绍)
			<Tree :height="$baseTableHeight(1) - 50"/>
			// 2. 中间拖动栏
			<div id="resize" class="resize" title="收缩侧边栏"></div>
		</el-col>
		// 3. 右侧内容
		<el-col id="right-content" class="right-content" :offset="0" :span="18">
			<el-table ref="table" border :data="list" :height="$baseTableHeight(1)" row-key="id" style="width: 100%">
				<el-table-column type="selection" width="55" />
              	<el-table-column align="center" label="#" width="55">
                	<template #default="{ $index }">
                  		{{ $index + 1 }}
                	</template>
                </el-table-column>
                <el-table-column label="文件名称" prop="originalName" />
			</el-table>
		</el-col>
	</el-row>
</template>

<script>
  import TreeVue from '@/component/Tree.vue'
  export default {
    components: { TreeVue },
    data() {
      return {
        list: [],
      }
    },
    mounted() {
      this.dragControllerDiv()
    },
    methods:{
    	dragControllerDiv() {
       		let left = document.getElementById('left-tree')
        	let line = document.getElementById('resize')
        	let right = document.getElementById('right-content')
        	// 鼠标按下事件
        	line.onmousedown = function (e) {
          	let startX = e.clientX
          	line.left = line.offsetLeft
          	// 鼠标拖动事件
          	document.onmousemove = function (e) {
            	let moveLen = line.left + (e.clientX - startX)
            	if (
              	moveLen >= document.body.clientWidth * 0.1 &&
              	moveLen <= document.body.clientWidth * 0.4
            	) {
              	line.style.left = moveLen + 'px'
              	left.style.width = moveLen + 'px'
              	right.style.width = document.body.clientWidth - moveLen + 'px'
            	}
          	}
          		document.onmouseup = function () {
           		document.onmousemove = null
            	document.onmouseup = null
          		}
        	}
      	},
    }
  }
</script>

<style lang="scss" scoped>
.contnet {
  display: flex;
}
.left-tree {
  position: relative;
  width: 500px;
  height: 100%; // 如果存在box-sizing,此处设置就会用会影响,可以先去掉看看效果
  background: #fff;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.050980392156862744);
  border-radius: 4px;
  vertical-align: top;
  display: inline-block;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 10px 0 0 10px;
  margin-right: 8px;
}
.resize {
  cursor: col-resize;
  position: absolute;
  top: 45%;
  right: -8px;
  background-color: #d6d6d6;
  border-radius: 5px;
  margin-top: -10px;
  width: 10px;
  height: 50px;
  background-size: cover;
  background-position: 50%;
  font-size: 32px;
  color: #fff;
}
.right-content {
  display: inline-block;
  width: calc(100% - 510px);
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.050980392156862744);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.050980392156862744);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  vertical-align: top;
  overflow: auto;
}
</style>
  1. 阐述
    (1).content{ display:flex;} 一定要有,否则在拖拽时会出现换行的情况
    (2)resize 要相对于父级绝对定位
  2. 去掉el-table 底部边框
  .el-table::before {
    height: 0px;
  }
  1. box-sizing盒模型
    (1)content-box 标准盒模型
    (2)border-box 怪异盒模型
  • 8
    点赞
  • 22
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值