当前位置:   article > 正文

vue3+Element-Plus+js 解决表格按住上下左右获取焦点_el-table 上下左右切换

el-table 上下左右切换

问题:

        一个el-table表格里面每一个框框都是一个el-input 然后给输入框v-model绑定值,绑定完成之后我们会发现有这么一个问题,不能按住上下左右键盘来移动,这时候我们操作就来了,效果如下:

 步骤走起:代码不做解释,开发时间久了就懂了

  1. import { nextTick } from 'vue'
  2. export class DirectionKey {
  3. constructor(str, code) {
  4. let _that = this
  5. str.split('_').forEach(item => {
  6. let o = item.split('=')
  7. _that[o[0]] = o[1]
  8. })
  9. if (code === 38) {
  10. this.previousLine()
  11. }
  12. if (code === 40) {
  13. this.nextLine()
  14. }
  15. if (code === 39) {
  16. this.next()
  17. }
  18. if (code === 37) {
  19. this.previous()
  20. }
  21. }
  22. next(x = this.x, y = this.y) {
  23. this.move({ x: ++x, y })
  24. }
  25. previous(x = this.x, y = this.y) {
  26. this.move({ x: --x, y })
  27. }
  28. nextLine(x = this.x, y = this.y) {
  29. this.move({ x, y: ++y })
  30. }
  31. previousLine(x = this.x, y = this.y) {
  32. this.move({ x, y: --y })
  33. }
  34. move({ x, y }) {
  35. nextTick(() => {
  36. let el = document.getElementById(`x=${x}_y=${y}`)
  37. el && el.focus()
  38. })
  39. }
  40. }

我这个是放在util文件里面的一个单独js文件, @/util/direction.js

接着我们就给el-table 设置一个按下事件

  1. <el-table :data="xxx" border @keydown="keymove">
  2. <el-table-column></el-table-column> <!--里面的反正都是一个el-input就对了-->
  3. </el-table>

然后呢给每一个el-input绑定成这样子的id,注意:如果你的el-table-column是循环的中间的index就改成你循环的那个index,如果是一个个手写的话就从0依次到结束 :id="'x=' +0+ '_y=' + $index"

  1. <el-input
  2. v-else :id="'x=' + index + '_y=' + $index"
  3. v-model="row.xxx"
  4. clearable
  5. size="small"/>

接下来就直接在script里面声明一个方法,方法如下:

  1. // 上下左右箭头移动
  2. function keymove(e) {
  3. if (e.key.substring(0, 5) !== 'Arrow') return
  4. e.preventDefault()
  5. new DirectionKey(e.target.id, e.keyCode)
  6. }

就没有然后啦,大概效果就是这样子

视频地址

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/114566?site
推荐阅读
相关标签
  

闽ICP备14008679号