Vue el-table序号与复选框hover切换

效果图下:

javascript 复制代码
<template>
  <div class="container">
    <el-table
      ref="multipleTable"
      id="multipleTable"
      :data="person.tableData"
      @cell-mouse-enter="cellEnter"
      @cell-mouse-leave="cellLeave"
      @selection-change="handleSelectionChange"
    >
      <el-table-column type="selection" width="50" align="center">
        <template #default="{ row, $index }">
          <!-- 复选框显示:通过移入事件添加id判断 || 已经勾选了的复选框 -->
          <div
            v-if="
              person.columnCheckedId == row.id || person.checkedList[$index]
            "
          >
            <el-checkbox
              v-model="person.checkedList[$index]"
            ></el-checkbox>
          </div>
          <!-- 序号显示:通过下标显示 -->
          <span v-else>{{ $index + 1 }}</span>
        </template>
      </el-table-column>
      <el-table-column prop="name" label="姓名"> </el-table-column>
      <el-table-column prop="age" label="性别"> </el-table-column>
      <el-table-column prop="six" label="年龄"> </el-table-column>
    </el-table>
  </div>
</template>
javascript 复制代码
<script setup>
import { computed, reactive, ref } from "vue";
const person = reactive({
  columnCheckedId: "",
  tableData: [
    { name: "123", id: 1, age: 10, six: "男" },
    { name: "123", id: 2, age: 20, six: "男" },
    { name: "123", id: 3, age: 330, six: "女" },
  ],
  multipleSelection: [], //全选
  checkedList: [], //table多选选中数据
});
// 全选
function handleSelectionChange(val) {
  person.multipleSelection = val;
  if (person.multipleSelection.length == person.tableData.length) {
    person.multipleSelection.forEach((item, index) => {
      person.checkedList[index] = true;
      console.log(person.checkedList[index]);
    });
  }
  if (person.multipleSelection.length == 0) {
    person.checkedList = [];
  }
}
//移入当前行
function cellEnter(row) {
  person.columnCheckedId = row.id;
}
// 移出当前行
function cellLeave(row) {
  person.columnCheckedId = "";
}
</script>
相关推荐
之歆5 小时前
DAY_12JavaScript DOM 完全指南(三):高级工程篇
开发语言·前端·javascript·ecmascript
来恩10035 小时前
EL表达式应用
前端·javascript·vue.js
希冀1235 小时前
【CSS学习第十篇】
前端·css
小飞侠是个胖子5 小时前
在 WebGL 中构建高性能 3D 沉浸式系统的三套高阶方案
前端·3d
wh_xia_jun5 小时前
Vue3 + Vitest 浏览器测试 从零开发指南
前端·javascript·vue.js
FlyWIHTSKY5 小时前
区块链前端技术栈介绍
前端·区块链
唐青枫5 小时前
别再让 key 写成字符串:TypeScript keyof 从入门到实战
前端·javascript·typescript
一点一木13 小时前
深度体验TRAE SOLO移动端7天:作为独立开发者,我把工作流揣进了兜里
前端·人工智能·trae
天外飞雨道沧桑13 小时前
TypeScript 中 omit 和 record 用法
前端·javascript·typescript
Lee川13 小时前
mini-cursor 揭秘:从 Tool 定义到 Agent 循环的完整实现
前端·人工智能·后端