table列表的弹窗下的多选框反选问题(人员筛选功能)

2023-11-23 17:20

本文主要是介绍table列表的弹窗下的多选框反选问题(人员筛选功能),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

项目即将完成,我想写一下总结,总结一些功能方便以后借阅,今天做的这个功能是table表格之间作人员筛选弹窗功能,父级列表点击新增,就会弹出人员筛选的弹窗。Atable列表是人员的总人数,Btable列表作为容器放你选的人员,可以删除,最后提交Btable的人员列表给父级列表。
1.此功能的难点就是回显是多选框选中状态,不好处理,不过已经在代码中标识。需要注意:弹窗的数据必须全部返给前端,前端自行分页,这样在修改时,需要处理回显数据的选择状态时,筛选已选择的数据比较容易处理。
2.在Btable列表,中手动写出checkbox单选、全选、添加、移除时的状态。
如下图:

父级列表:
在这里插入图片描述

人员筛选:
在这里插入图片描述
父级代码:

<template><div><el-button type="success" size="mini" @click="add()">新增</el-button><el-tableclass="acceptorsTable":data="currentPageData"style="width: 100%"><el-table-columntype="index"label="序号"headerAlign="center"align="center"></el-table-column><el-table-columnlabel="姓名"width="400"headerAlign="center"align="center"><template slot-scope="scopes">{{ scopes.row.name}}</template></el-table-column><el-table-column label="操作"headerAlign="center"align="center"><template slot-scope="scopes"><el-buttonsize="mini"type="danger"@click="newHandleDelete(scopes.row)">删除</el-button></template></el-table-column></el-table><fruits ref="edit" @childClosed ="closed"></fruits></div>
</template>
<script> import fruits from './fruits'export default {components: {fruits},data(){return {ruleForm: {acceptors: [],},// 分页nowknowledgeint:[],pageSize: 10,pageSizes: [10, 20, 30, 50, 100], // select选项设置:条/页currentPage: 1,total: 0,currentPageData: [], // 当前页显示内容}},created(){},mounted(){},methods: {// 删除newHandleDelete(row) {this.nowknowledgeint.forEach((n, index) => {if (n.id == row.id) {this.nowknowledgeint.splice(index, 1);}});},add(command) {this.$refs.edit.open(true, {});},edit(row) {this.$refs.edit.open(false,row)},// 关闭closed(data){var acceptorsArray = []if(data.length > 0){data.forEach(value => {acceptorsArray.push(value)});}this.nowknowledgeint = acceptorsArraythis.setCurrentPageData()console.log(this.nowknowledgeint)},// 分页// 设置当前页面数据,对数组操作的截取规则为[0~5],[5~10]...,setCurrentPageData() {let begin = (this.currentPage - 1) * this.pageSizelet end = this.currentPage * this.pageSizethis.currentPageData = this.nowknowledgeint.slice(begin,end)},handleSizeChange(val) {this.pageSize = vallet begin = (this.currentPage - 1) * vallet end = this.currentPage * valthis.currentPageData = this.nowknowledgeint.slice(begin,end)},handleCurrentChange(val) {if (this.currentPage == this.totalPage) returnthis.currentPage = valthis.setCurrentPageData()},},}
</script>
<style type="text/css">
</style>

人员筛选:

<template><div><el-dialog:visible.sync="outInnerVisible"append-to-bodywidth="70%"class="groupEdit"style="overflow:auto;"@close ='close'><el-form:model="newRuleForm"ref="newRuleForm"label-width="100px"class="send"><div style="width:296px; padding:8px 0px;"><el-inputplaceholder="请输入内容"suffix-icon="el-icon-search"clearablev-model="inputValue"@keyup.enter.native="searchEnterFun"><el-button slot="append" @click="serch()">查询</el-button></el-input></div><div class="clearfix"><div class="transferBefore fl"><el-tableclass="transferBeforeTbale"ref="multipleTable":data="newRuleForm.tableDataList"tooltip-effect="dark"style="width: 100%"@select="handleSelect"@select-all="handleSelectAll"><el-table-columntype="selection"width="55"></el-table-column><el-table-columntype="index"label="序号"headerAlign="center"align="center":index="indexMethod"></el-table-column><el-table-columnlabel="姓名"header-align="center"align="center"><template slot-scope="scope">{{ scope.row.name}}</template></el-table-column></el-table><div class="contactsyncPage" style="padding:8px 0px;"><el-pagination:pager-count="5"@size-change="handleSizeChange"@current-change="handleCurrentChange":current-page="Number(currentPage+1)":page-sizes="pageSizes":page-size="pageSize"layout="total, prev, pager, next, jumper":total="total"></el-pagination></div></div><div class="transferAfter fr"><el-tableclass="transferAfterTable":data="newRuleForm.newTableDataList"style="width: 100%"><el-table-columntype="index"label="序号"headerAlign="center"align="center"></el-table-column><el-table-columnlabel="姓名"headerAlign="center"align="center"><template slot-scope="scope">{{ scope.row.name}}</template></el-table-column><el-table-column label="操作"headerAlign="center"align="center"width="60"><template slot-scope="scope"><el-buttonsize="mini"type="danger"@click="handleDelete(scope.row)">删除</el-button></template></el-table-column></el-table></div></div></el-form><div class="submitButton"><el-button type="primary" size="small" @click="onSubmit">确定</el-button><el-button size="small" @click="cancel">取消</el-button></div></el-dialog></div>
</template>
<script>export default {data(){return{outInnerVisible: false,// 查询inputValue:'',// tablenewRuleForm:{tableDataList: [],newTableDataList:[],},ids: [], // 选中的数据id数组newRows:[],// 分页pageSize: 10,pageSizes: [10, 20, 30, 50, 100], // select选项设置:条/页currentPage: 0,total: 0,}},computed: {},created(){this.tableData()},mounted(){},methods: {// 数据回显open(isEdit, obj){this.outInnerVisible = trueif(!isEdit){// 修改this.inputValue = "";this.pageSize=10;this.currentPage=0;this.newRuleForm.tableDataList = [];this.$nextTick(()=>{this.newRuleForm.newTableDataList =  JSON.parse(JSON.stringify(obj))})this.tableData(this.currentPage,this.pageSize,this.inputValue)}else{// 新增this.inputValue = "";this.pageSize=10;this.currentPage=0;this.newRuleForm.tableDataList = []this.tableData(this.currentPage,this.pageSize,this.inputValue)}},// 查询searchEnterFun(e) {var keyCode = window.event ? e.keyCode : e.which;if (keyCode == 13) {this.serch();}},serch(){this.currentPage = 0this.tableData(this.currentPage,this.pageSize,this.inputValue)},//获取人员tableData(pageIndex,pageSize,userName) {this.$axios.post("接口", {post:'参数'}).then((res) => {this.total = res.data.totalCount; //总页数this.newRuleForm.tableDataList = res.data.list; //内容// 编辑时,如果该页存在选中的数据,则选中(重点)if (this.newRuleForm.newTableDataList.length) {this.toggleSelection(this.newRuleForm.newTableDataList);}});},// 单选handleSelect(selection, row) {let allRows = selection.filter((item) => !!item);if (allRows.find(item => item.userId === row.userId)) {this.addRows([row]);} else {this.removeRows([row]);}},// 全选handleSelectAll(selection) {if (selection.length > 1){this.addRows(this.newRuleForm.tableDataList);} else {this.removeRows(this.newRuleForm.tableDataList);}},// 添加addRows(rows) {for (const key of rows){if (!this.newRuleForm.newTableDataList.find((item) => item.id === key.id)) {this.$nextTick(()=>{this.newRuleForm.newTableDataList.push(key);})}}},// 移除removeRows(rows) {if (this.newRuleForm.newTableDataList.length > 0){for (const key of rows) {this.$nextTick(()=>{this.newRuleForm.newTableDataList = this.newRuleForm.newTableDataList.filter((item) => item.id !== key.id);}) }}},// 如果该页存在选中的数据,则选中(难点)toggleSelection(rows){if (rows) {rows.forEach(row => {this.$nextTick(() => {const checked = this.newRuleForm.tableDataList.find(tableRow => tableRow.id === row.id);this.$refs.multipleTable.toggleRowSelection(checked, true);});});} else {this.$refs.multipleTable.toggleRowSelection(this.newRuleForm.tableDataList, false);this.removeRows(this.newRuleForm.tableDataList);}},// 删除时调用handleDelete(row) {this.$nextTick(x=>{this.$refs.multipleTable.toggleRowSelection(row,false);this.$refs.multipleTable.toggleRowSelection(this.newRuleForm.tableDataList.find( // 这是我弹框表格的数据item => row.id === item.id),false);this.newRuleForm.newTableDataList.forEach((n, index) => {if (n.id === row.id) {this.newRuleForm.newTableDataList.splice(index, 1);}});})},// 序号indexMethod(index) {return index + 1 + this.currentPage * this.pageSize},// 提交onSubmit(){this.outInnerVisible = false// 传给父级this.$emit('childClosed',this.newRuleForm.newTableDataList);},// 取消cancel() {this.outInnerVisible = falsethis.newRuleForm.newTableDataList = [];},// 关闭close(){this.newRuleForm.newTableDataList = [];},//分页handleSizeChange(val) {this.pageSize = valthis.currentPage = 0this.tableData(this.currentPage,this.pageSize,this.inputValue)this.handleCurrentChange(1)},handleCurrentChange(val) {this.$nextTick(()=>{this.currentPage = val-1this.tableData(this.currentPage,this.pageSize,this.inputValue)})} },}
</script>
<style scoped>
.clear {clear: both;
}.clearfix:after {content: ".";height: 0px;display: block;visibility: hidden;clear: both;
}.clearfix {zoom: 1;
}
.fl {float: left;
}
.fr{float:right;
}
.transferBefore{width: 48%;
}
.transferBeforeTbale{border-top:solid 1px #EBEEF5;border-left:solid 1px #EBEEF5;border-right:solid 1px #EBEEF5;
}
.transferAfter{width:48%;
}
.transferAfterTable{border-top:solid 1px #EBEEF5;border-left:solid 1px #EBEEF5;border-right:solid 1px #EBEEF5;height:530px;overflow-y: auto;
}
.submitButton{padding-top:10px ;text-align: right;
}
</style>

这篇关于table列表的弹窗下的多选框反选问题(人员筛选功能)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/419538

相关文章

如何解决mmcv无法安装或安装之后报错问题

《如何解决mmcv无法安装或安装之后报错问题》:本文主要介绍如何解决mmcv无法安装或安装之后报错问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录mmcv无法安装或安装之后报错问题1.当我们运行YOwww.chinasem.cnLO时遇到2.找到下图所示这里3.

浅谈配置MMCV环境,解决报错,版本不匹配问题

《浅谈配置MMCV环境,解决报错,版本不匹配问题》:本文主要介绍浅谈配置MMCV环境,解决报错,版本不匹配问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录配置MMCV环境,解决报错,版本不匹配错误示例正确示例总结配置MMCV环境,解决报错,版本不匹配在col

Vue3使用router,params传参为空问题

《Vue3使用router,params传参为空问题》:本文主要介绍Vue3使用router,params传参为空问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录vue3使用China编程router,params传参为空1.使用query方式传参2.使用 Histo

Mybatis 传参与排序模糊查询功能实现

《Mybatis传参与排序模糊查询功能实现》:本文主要介绍Mybatis传参与排序模糊查询功能实现,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录一、#{ }和${ }传参的区别二、排序三、like查询四、数据库连接池五、mysql 开发企业规范一、#{ }和${ }传参的

SpringBoot首笔交易慢问题排查与优化方案

《SpringBoot首笔交易慢问题排查与优化方案》在我们的微服务项目中,遇到这样的问题:应用启动后,第一笔交易响应耗时高达4、5秒,而后续请求均能在毫秒级完成,这不仅触发监控告警,也极大影响了用户体... 目录问题背景排查步骤1. 日志分析2. 性能工具定位优化方案:提前预热各种资源1. Flowable

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

SpringKafka消息发布之KafkaTemplate与事务支持功能

《SpringKafka消息发布之KafkaTemplate与事务支持功能》通过本文介绍的基本用法、序列化选项、事务支持、错误处理和性能优化技术,开发者可以构建高效可靠的Kafka消息发布系统,事务支... 目录引言一、KafkaTemplate基础二、消息序列化三、事务支持机制四、错误处理与重试五、性能优

SpringIntegration消息路由之Router的条件路由与过滤功能

《SpringIntegration消息路由之Router的条件路由与过滤功能》本文详细介绍了Router的基础概念、条件路由实现、基于消息头的路由、动态路由与路由表、消息过滤与选择性路由以及错误处理... 目录引言一、Router基础概念二、条件路由实现三、基于消息头的路由四、动态路由与路由表五、消息过滤

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu