elementui Cascader 级联选择器的使用总结

实现效果

技术要点总结如下:

1、点击添加自动增加多行,实现自主选择增加多条节点数据

2、节点地址使用的是Cascader 级联选择器,需要动态生成,涉及到一个技术要点是:因v-modal只能获取value不能获取label,故需要解决在多个动态生成的Cascader 分别获取他们选中的label和value,


javascript 复制代码
下面开始展示相关代码:

html:

 <el-dialog :title="title" :visible.sync="open" width="1300px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
        <el-row :gutter="10" class="mb8">
          <el-col :span="1.5">
            <el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAddPlatCarLineDetail">添加</el-button>
          </el-col>
          <el-col :span="1.5">
            <el-button type="danger" icon="el-icon-delete" size="mini" @click="handleDeletePlatCarLineDetail">删除</el-button>
          </el-col>
        </el-row>
        <el-table :data="platCarLineDetailList" :row-class-name="rowPlatCarLineDetailIndex" @selection-change="handlePlatCarLineDetailSelectionChange" ref="platCarLineDetail">
          <el-table-column type="selection" width="50" align="center" />
          <el-table-column label="序号" align="center" prop="index" width="50"/>
          <el-table-column label="节点名称" prop="nodeName" width="150">
            <template slot-scope="scope">
              <el-input v-model="scope.row.nodeName" placeholder="请输入节点名称" />
            </template>
          </el-table-column>
          <el-table-column label="节点地址" prop="nodeAddress" width="250" >
            <template slot-scope="scope">
              <el-cascader
                v-model="valueNode[scope.$index]"
                :options="optionsNodeSource"
                :props="{value:'id',label:'name'}"
                :ref="'cascader'+scope.$index"
                @change="handleChange(scope.$index)"></el-cascader>
            </template>
          </el-table-column> 
        </el-table>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
js:

handleChange(index){
  var that=this
  var name='cascader'+index
//this.valueNode[index] 对应的是省市区的id  nameArr对应的是省市区的name
  var nameArr=this.$refs[name].getCheckedNodes()[0].pathLabels
  that.$nextTick(function () {
    that.platCarLineDetailList[index].nodeAddress=nameArr
    console.log(that.platCarLineDetailList,that.valueNode)
    that.$forceUpdate()
  })
},
/** 车线详情添加按钮操作 */
handleAddPlatCarLineDetail() {
  var that=this
  that.$nextTick(function () {
    let obj = {};
    obj.nodeName = "";
    obj.nodeAddress = ""; 
    that.valueNode.push([])//在data中定义格式为[[]]
    that.platCarLineDetailList.push(obj); 
    that.$forceUpdate()
  })
},
/** 车线详情删除按钮操作 */
handleDeletePlatCarLineDetail() {
  if (this.checkedPlatCarLineDetail.length == 0) {
    this.$modal.msgError("请先选择要删除的车线详情数据");
  } else {
    const platCarLineDetailList = this.platCarLineDetailList;
    const valueNode = this.valueNode;
    const checkedPlatCarLineDetail = this.checkedPlatCarLineDetail;
    this.platCarLineDetailList = platCarLineDetailList.filter(function(item) {
      return checkedPlatCarLineDetail.indexOf(item.index) == -1
    });
    this.valueNode = valueNode.filter(function(item,indexV) {
      var num=indexV+1
      return checkedPlatCarLineDetail.indexOf(num) == -1
    });
 
  }
},

代码解释

复制代码
相关推荐
LaoZhangAI25 分钟前
2025最全GPT-4o图像生成API指南:官方接口配置+15个实用提示词【保姆级教程】
前端
ONE_Gua25 分钟前
chromium魔改——CDP(Chrome DevTools Protocol)检测01
前端·后端·爬虫
LaoZhangAI29 分钟前
2025最全Cherry Studio使用MCP指南:8种强大工具配置方法与实战案例
前端
咖啡教室29 分钟前
前端开发日常工作每日记录笔记(2019至2024合集)
前端·javascript
溪饱鱼34 分钟前
Nuxt3能上生产吗?
前端
咖啡教室1 小时前
前端开发中JavaScript、HTML、CSS常见避坑问题
前端·javascript·css
LaoZhangAI3 小时前
Claude MCP模型上下文协议详解:AI与外部世界交互的革命性突破【2025最新指南】
前端
LaoZhangAI3 小时前
2025最全Cursor MCP实用指南:15个高效工具彻底提升AI编程体验【实战攻略】
前端
Kagerou3 小时前
vue3基础知识(结合TypeScript)
前端
市民中心的蟋蟀3 小时前
第五章 使用Context和订阅来共享组件状态
前端·javascript·react.js