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>
相关推荐
奔跑的web.5 小时前
TypeScript 装饰器入门核心用法
前端·javascript·vue.js·typescript
阿蒙Amon5 小时前
TypeScript学习-第1章:入门
javascript·学习·typescript
winfredzhang5 小时前
实战复盘:如何用 HTML+JS+AI 打造一款“影迹”智能影视管理系统
javascript·html·json·加载·搜索·保存·电影接口
集成显卡5 小时前
Lucide Icons:一套现代、轻量且可定制的 SVG 图标库
前端·ui·图标库·lucide
pas1366 小时前
37-mini-vue 解析插值
前端·javascript·vue.js
十里-7 小时前
vue.js 2前端开发的项目通过electron打包成exe
前端·vue.js·electron
雨季6667 小时前
构建 OpenHarmony 简易文字行数统计器:用字符串分割实现纯文本结构感知
开发语言·前端·javascript·flutter·ui·dart
雨季6667 小时前
Flutter 三端应用实战:OpenHarmony 简易倒序文本查看器开发指南
开发语言·javascript·flutter·ui
小北方城市网8 小时前
Redis 分布式锁高可用实现:从原理到生产级落地
java·前端·javascript·spring boot·redis·分布式·wpf
console.log('npc')8 小时前
vue2 使用高德接口查询天气
前端·vue.js