ui 关于获取select 的label值方法

今天小编就为大家分享一篇element-ui 关于获取select 的label值方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

在某些场景下,还是需要在获得label的值跟Value值的。

vue获取值的方式:

<el-form-item label="库位" prop="goodsLocationId" > <el-col :span="15"> <el-select v-model="scope.row.goodsLocationId" placeholder="货位地址" @change="changeLocationValue"> <el-option v-for="lo in locations" :label="lo.locationName" :value="lo.id" :key="lo.id"></el-option> </el-select> </el-col> </el-form-item>

js:

changeLocationValue(val){ //locations是v-for里面的也是datas里面的值 let obj = {}; obj = this.locations.find((item)=>{ return item.id === val; }); this.wareHouseVO2.goodsLocationName = obj.locationName; },

这可以获得相应的值减少其他数据库的操作。

拓展知识:Element ui select同时获取value和label的值的实例

如下所示:

<el-form-item v-if="isMD" label="业务员名称"> <el-select v-model="addBM.storeManagerName" @change="selectGet" filterable placeholder="请选择门店业务员名称"> <el-option v-for="item in userList" :key="item.id" :label="item.name" :value="item.id"> </el-option> </el-select> </el-form-item>

//下拉框选中事件 selectGet(vId){//这个vId也就是value值 console.log(ha); let obj = {}; obj = this.userList.find((item)=>{//这里的userList就是上面遍历的数据源 return item.id === vId;//筛选出匹配数据 }); console.log(obj.name);//我这边的name就是对应label的 }

以上这篇element-ui 关于获取select 的label值方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/f7c303d8d5570d14258db839d6a98787.html