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>
相关推荐
OEC小胖胖4 小时前
去中心化身份:2025年Web3身份验证系统开发实践
前端·web3·去中心化·区块链
Cacciatore->5 小时前
Electron 快速上手
javascript·arcgis·electron
vvilkim5 小时前
Electron 进程间通信(IPC)深度优化指南
前端·javascript·electron
某公司摸鱼前端6 小时前
ES13(ES2022)新特性整理
javascript·ecmascript·es13
ai小鬼头7 小时前
百度秒搭发布:无代码编程如何让普通人轻松打造AI应用?
前端·后端·github
漂流瓶jz7 小时前
清除浮动/避开margin折叠:前端CSS中BFC的特点与限制
前端·css·面试
前端 贾公子7 小时前
在移动端使用 Tailwind CSS (uniapp)
前端·uni-app
散步去海边7 小时前
Cursor 进阶使用教程
前端·ai编程·cursor
清幽竹客7 小时前
vue-30(理解 Nuxt.js 目录结构)
前端·javascript·vue.js
知性的小mahua7 小时前
echarts+vue实现中国地图板块渲染+省市区跳转渲染
vue.js