• element-ui Checkbox 实现单选


    html 部分

    <el-table id="tables" ref="multipleTable" row-key="id" 
        :data="tableData" 
         max-height="450" 
         border 
         style=" 100%" 
         @selection-change="handleSelectionChange" //将用到此
         :header-cell-style="{background:'#F8F8FA',color:'#606266',fontSize:'13px',fontWeight:'bold'}"
       >
         <el-table-column type="selection" width="60" align="center" :reserve-selection="true"></el-table-column>
         <el-table-column prop="id" label="序号" width="120" align="center"> </el-table-column>
         <el-table-column prop="name" label="话题名称" align="center" show-overflow-tooltip> </el-table-column>
     </el-table>

    js部分

    handleSelectionChange(val) {
      if(val.length >=2){
         // 删除索引为0的
         // console.log(val.splice(0,val.length-1),'被删除的')
         let arrays = val.splice(0,val.length-1)
         arrays.forEach(row => {
           this.$refs.multipleTable.toggleRowSelection(row); //除了当前点击的,其他的全部取消选中
         })
      }
      // console.log(val,'最后得到的')this.array = val
    }
    <el-table id="tables" ref="multipleTable" row-key="id" :data="tableDatamax-height="450" border style=" 100%" @selection-change="handleSelectionChange" :header-cell-style="{background:'#F8F8FA',color:'#606266',fontSize:'13px',fontWeight:'bold'}">
                <el-table-column type="selection" width="60" align="center" :reserve-selection="true"></el-table-column>
                <el-table-column prop="id" label="序号" width="120" align="center"> </el-table-column>
                <el-table-column prop="name" label="话题名称" align="center" show-overflow-tooltip> </el-table-column>
                <el-table-column prop="introduction" label="话题内容" show-overflow-tooltip align="center"></el-table-column>
                <el-table-column prop="creatorName" label="创建人" align="center" show-overflow-tooltip> </el-table-column>
              </el-table>
  • 相关阅读:
    zookeeper安装和使用
    一个最简单的Dubbo入门框架
    Dubbo Admin管理平台搭建
    Docker容器入门实践
    vue 项目安装 (入门)
    测试任何对象的某个特性是否存在 兼容js
    用户代理字符串检测呈现引擎、平台、Windows操作系统、移动设备和游戏系统 js
    React
    React (4) -- Conditional Rendering
    React (5) -- Lists and Keys
  • 原文地址:https://www.cnblogs.com/tlfe/p/12218272.html
Copyright © 2020-2023  润新知