溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何實現(xiàn)elementui中的el-cascader級聯(lián)選擇器

發(fā)布時間:2022-03-04 14:44:33 來源:億速云 閱讀:278 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)如何實現(xiàn)elementui中的el-cascader級聯(lián)選擇器的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

一、效果

如何實現(xiàn)elementui中的el-cascader級聯(lián)選擇器

功能:使用接口調(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ù)源,需要重新指向

如何實現(xiàn)elementui中的el-cascader級聯(lián)選擇器

但是我們接口返回的數(shù)據(jù)源是這樣的:

如何實現(xiàn)elementui中的el-cascader級聯(lián)選擇器

所以要重新指向一下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é)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(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)容。

AI