您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)如何實現(xiàn)elementui中的el-cascader級聯(lián)選擇器的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
功能:使用接口調(diào)回來的數(shù)據(jù),顯示出可選的項,并開始有默認(rèn)的選項值。
<el-cascader ref="cascaderAddr" :options="rangeArr" :props="optionProps" v-model="plable" @change="handleChange3" ></el-cascader>
解釋:
(1)數(shù)據(jù)源不符合官方的數(shù)據(jù)源,需要重新指向
但是我們接口返回的數(shù)據(jù)源是這樣的:
所以要重新指向一下value值、lable值以及children值(所以才有了:props=“optionProps”);
(2)expandTrigger:次級菜單的展開方式click / hover,默認(rèn)為click
(3)checkStrictly:是否嚴(yán)格的遵守父子節(jié)點不互相關(guān)聯(lián)
export default { data() { //配送位置選擇源 rangeArr: [], optionProps: { value: 'sguid', label: 'address', children: 'childs', checkStrictly: true, expandTrigger: 'hover' }, plable: [], //配送選擇值 }, mounted: function() { //配送位置 this.$axios .get('url') .then(response => { this.rangeArr = response.data.obj; console.log('配送可選擇源aaaa', this.rangeArr); }) .catch(function(error) { // 請求失敗處理 console.log(error); }); //獲取初始值 this.$axios.get("url") .then((response) => { if (response.data.status == 200){ this.plable=response.data.obj.ranges_sguid;//默認(rèn)選中的值 } }) .catch(function (error) { // 請求失敗處理 console.log(error); }); }, methods: { handleChange3(value) { console.log('選中id值',value); console.log('選中l(wèi)able值',this.plable); var thsAreaCode = this.$refs.cascaderAddr.getCheckedNodes()[0].pathLabels;; //注意2: 獲取label值 console.log('lable',thsAreaCode) // 注意3: 最終結(jié)果是個一維數(shù)組對象 var len=value.length-1; this.form.ranges_sguid=value[len];//這是最終修改后的要提交的選中后的數(shù)據(jù)值 console.log('guid',this.form.ranges_sguid); this.$refs.cascaderAddr.toggleDropDownVisible();// 選擇之后將下拉界面收起 } }
感謝各位的閱讀!關(guān)于“如何實現(xiàn)elementui中的el-cascader級聯(lián)選擇器”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。