多选框 对应的value label id key

1.value 是选项变化时得到的数据 lable 是下拉框中展示的数据

2.选项变化更改对象的数据 页面实时回显更新 用到$set ,

3.后端要求传id(,分割的字符串) ,返回参数也是id,需要自己遍历转换成名称 用$set 回显

  <el-form-item label="所属经理" prop="vcManagerName" style="">
       <el-select ref="mySelect" class="queryClass" :max-tag-count="1"  multiple clearable                   
        size="small" v-model="ruleForm.vcManagerName" @on-change="selectFund">
               <el-option v-for="item in vcManagerList" :label="item.vcName" 
                   :value="item.vcName" :key="item.id">
                </el-option>
        </el-select>
    </el-form-item>

 vcManagerList:[
              {vcName:'黄忠',id:"huangz"},
              {vcName:'董丽',id:"dongl"},
              {vcName:'翟腾',id:"zhait"},
              {vcName:'席志学',id:"xizx01"},
              {vcName:'蒋丽娟',id:"jianglj"},
              {vcName:'景宏玉',id:"jinghy"},

            ],

//this.seledtedReceipt.vcManager是"xizx01,jianglj,jinghy"

 arr1=this.seledtedReceipt.vcManager.split(',')
              let arr2=[]
              arr1.map(item=>{
                this.vcManagerList.map(it=>{
                  if(item==it.id){
                    arr2.push(it.vcName)
                  }
                })
              })
              this.ruleForm=this.seledtedReceipt
              // this.ruleForm.vcManagerName=arr2
              this.$set(this.ruleForm,'vcManagerName',arr2)

选择所属经理 重新给vcManagerName赋值,转换得到给后端的id字符串

      //选择所属经理
        selectFund(val){
          console.log('val',val);
         
           this.$set(this.ruleForm, 'vcManagerName', val)
          let arrId=[]
          if(val){
            val.map((item)=>{
              this.vcManagerList.map(it=>{
                  if(item==it.vcName){
                    arrId.push(it.id)
                  }
              })   
            })
            this.vcManager=arrId.join(',')
          }else{
            this.vcManager=""
          }
          
        },
相关推荐
工业互联网专业11 分钟前
基于springboot+vue的高校社团管理系统的设计与实现
java·vue.js·spring boot·毕业设计·源码·课程设计
Channing Lewis1 小时前
如何实现网页不用刷新也能更新
前端
白宇横流学长1 小时前
基于SpringBoot+Vue的旅游管理系统【源码+文档+部署讲解】
vue.js·spring boot·旅游
努力搬砖的程序媛儿2 小时前
uniapp广告飘窗
前端·javascript·uni-app
dfh00l2 小时前
firefox屏蔽debugger()
前端·firefox
张人玉2 小时前
小白误入(需要一定的vue基础 )使用node建立服务器——vue前端登录注册页面连接到数据库
服务器·前端·vue.js
大大。2 小时前
element el-table合并单元格
前端·javascript·vue.js
一纸忘忧3 小时前
Bun 1.2 版本重磅更新,带来全方位升级体验
前端·javascript·node.js
杨.某某3 小时前
若依 v-hasPermi 自定义指令失效场景
前端·javascript·vue.js
猫猫村晨总3 小时前
基于 Vue3 + Canvas + Web Worker 实现高性能图像黑白转换工具的设计与实现
前端·vue3·canvas