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>
相关推荐
龙颜21 小时前
从0-1封装一个React组件
前端·react.js
空空kkk1 天前
SpringMVC——异常
java·前端·javascript
DcTbnk1 天前
脚本猫中的新建脚本:定时脚本、后台脚本、普通脚本,三个区别
前端
冴羽1 天前
涨见识了,Error.cause 让 JavaScript 错误调试更轻松
前端·javascript·node.js
一千柯橘1 天前
Electron 第一步
前端·electron
m***D2861 天前
JavaScript在Node.js中的内存管理
开发语言·javascript·node.js
我叫张小白。1 天前
JavaScript现代语法梳理:ES6+核心特性详解
开发语言·javascript·typescript·es6
code_Bo1 天前
Ant Design Vue 日期选择器英文不变更中文问题
前端·vue.js·ant design
啃火龙果的兔子1 天前
react-i18next+i18next-icu使用详解
前端·javascript·react.js
彭于晏爱编程1 天前
🌹🌹🌹bro,AntD 6.0.0 来了
前端