Vue⾃适应⾼度表格的实现⽅法(elementUI+adaptive.js) Vue ⾃定义指令
你可能会好奇 v-adaptive 是在哪⾥来的?它是⾃定义的指令,设置表格⾼度需要对普通 DOM 元素进⾏底层操作。Vue 除了核⼼功能默认内置的指令 ( v-model 和 v-show ),也允许注册⾃定义指令,相关 Api 可以查看 官⽅⽂档 。
v-adaptive
新建包名 src/directive/el-table ,创建 adaptive.js 。页⾯缩放的监听是使⽤的 element-ui 中的 resize-event ,将addResizeListener 和 removeResizeListener 引⼊进来。⾃定义指令要⽤到的钩⼦函数:
bind:只调⽤⼀次,指令第⼀次绑定到元素时调⽤。在这⾥可以进⾏⼀次性的初始化设置。
inserted:被绑定元素插⼊⽗节点时调⽤ (仅保证⽗节点存在,但不⼀定已被插⼊⽂档中)。
unbind:只调⽤⼀次,指令与元素解绑时调⽤。
// 设置表格⾼度
const doResize = async (el, binding, vnode) => {
/
/ 获取表格Dom对象
const {
componentInstance: $table
} = await vnode
// 获取调⽤传递过来的数据
const {
value
} = binding
if (!$table.height) {
throw new Error(`el-$table must set the height. Such as height='100px'`)
}
/
/ 获取距底部距离(⽤于展⽰页码等信息)
const bottomOffset = (value && value.bottomOffset) || 30
if (!$table) return
// 计算列表⾼度并设置
const height = window.innerHeight - el.getBoundingClientRect().top - bottomOffset $table.layout.setHeight(height)
$table.doLayout()
}
export default {
// 初始化设置
bind(el, binding, vnode) {
// 设置resize监听⽅法
await doResize(el, binding, vnode)
}
// 绑定监听⽅法到addResizeListener
// addResizeListener(window.document.body, el.resizeListener)
window.addEventListener('resize', el.resizeListener)
},
update(el, binding, vnode) {
doResize(el, binding, vnode)
},
// 绑定默认⾼度
async inserted(el, binding, vnode) {
await doResize(el, binding, vnode)
},
// 销毁时设置
unbind(el) {
// 移除resize监听
// removeResizeListener(el, el.resizeListener)
}
}
接下来,需要将写好的逻辑绑定到 Vue 中,在同⼀⽬录下新建 index.js :
import adaptive from './adaptive'
const install = function(Vue) {
// 绑定v-adaptive指令
Vue.directive('adaptive', adaptive)
}
if (window.Vue) {
window['adaptive'] = adaptive
// eslint-disable-next-line no-undef
Vue.use(install)
}
adaptive.install = install
export default adaptive
在单页⾯使⽤
指令相关代码已经写好了,接下来就是该如何使⽤了。到想要设置表格⾃适应⾼度的 vue ⽂件,在 script 标签下引⼊⾃定义的指令并绑定。
import adaptive from '@/directive/el-table'
export default {
name:'Test',
directives: { adaptive },
... ...
}
然后到表格所在的标签添加指令相关的代码:
<el-table
ref="table"
// ⾃定义指令,bottomOffset 代表距离底部的距离
v-adaptive="{bottomOffset: 85}"
// ⾼度属性,100⽆具体意义,仅为初始值,不可省略
height="100px"
>
adaptive... ...
</table>
全局使⽤
如果存在多个页⾯需要设置⾃适应⾼度,为了减少使⽤指令的复杂度,我们可以在 main.js 中全局引⼊⾃定义的指令,上述 script 的内容就不需要在每个页⾯进⾏写⼊了。
import adaptive from './directive/el-table'
Vue.use(adaptive)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论