1.el-table加row-key,列表数据中的唯一标识 2.多选type="selection"加reserve-selection属性为ture,缓存选中效果 3.获取选中数据 //多选 选中 const handleSelectionChange = (value: any) => { selectOptions.value = value; console.log('选中数据,包含分页', selectOptions.value); }; 4.回显选中,建议列表...
<el-dialogv-model="data.dialogVisible"width="800px":show-close="false":before-close="handleClose":modal="false"destroy-on-close><template#header="{close}">添加分类<el-iconstyle="cursor: pointer"@click="close"><Close/></el-icon></template><el-select@change="searchHandle()"clearablev-mo...
先获取所有图片的 dom,通过document.body.clientHeight获取可视区高度,再使用element.getBoundingClientRect()API 直接得到元素相对浏览的 top 值, 遍历每个图片判断当前图片是否到了可视区范围内。代码如下: function lazyload() { let viewHeight = document.body.clientHeight //获取可视区高度 let imgs = document....