国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

vue 監(jiān)聽(tīng) Treeselect 選擇項(xiàng)的改變操作

瀏覽:83日期:2022-12-01 17:26:35

項(xiàng)目中使用 Treeselect 時(shí),需要獲取選項(xiàng)的變化從而觸發(fā)別的事件,所以需要監(jiān)聽(tīng)Treeselect 所選擇的值。

我使用了watch 來(lái)監(jiān)聽(tīng) treeselect 綁定的 model ,如果 model 的值發(fā)生變化就觸發(fā) currDeptChange 事件。

<el-form-item prop='deptId' :label='$t(’deviceManage.device.table.deptId’)+’:’'> <treeselect :options='deptTree' :normalizer='normalizer' v-model='formData.deptId' :placeholder='$t(’deviceManage.device.dlg.deptId’)'> </treeselect></el-form-item>

監(jiān)聽(tīng) Treeselect 選擇項(xiàng)的改變

watch: { // 監(jiān)聽(tīng)deptId ’formData.deptId’: ’currDeptChange’},methods: { currDeptChange(val) { console.log(’currDeptChange’, val) if (val) { this.queryStaff() } }, queryStaff() {}}

補(bǔ)充知識(shí):vue Treeselect 樹(shù)形下拉框 : 獲取選中節(jié)點(diǎn)的ids和lables

API: https://vue-treeselect.js.org/#events

1.ids: 即value

1.lable: 需要用到方法:@select(node,instanceId) 和 @deselect(node,instanceId)

vue 監(jiān)聽(tīng) Treeselect 選擇項(xiàng)的改變操作

<template><treeselect ref='DRHA_EFaultModeTree' v-model='DRHA_EFaultModeTree_value' :multiple='true':options='DRHA_EFaultModeTree_options' :flat='true' :show-count='true' :disable-branch-nodes='true' :searchable='false' @select='DRHA_EFaultModeTree_handleSelect' @deselect='DRHA_EFaultModeTree_handleDeSelect' placeholder=' 請(qǐng)選擇...'/> <p>lables:{{DRHA_EFaultModeTree_lables}}</p> <p>ids:{{DRHA_EFaultModeTree_value}}</p> </template> <script> // import the component import Treeselect from ’@riophae/vue-treeselect’ // import the styles import ’@riophae/vue-treeselect/dist/vue-treeselect.css’ export default { components: { Treeselect }, data() { return {DRHA_EFaultModeTree_value: null, DRHA_EFaultModeTree_lables: [], DRHA_EFaultModeTree_options: [ { id: ’1’, label: ’Fruits’, children: [ { id: ’1-1’, label: ’Apple ?’, isNew: true, }, { id: ’1-2’, label: ’Grapes ?’, }, { id: ’1-3’, label: ’Pear ?’, }, { id: ’1-4’, label: ’Strawberry ?’, }, { id: ’watermelon’, label: ’Watermelon ?’, } ], }, { id: ’vegetables’, label: ’Vegetables’, children: [ { id: ’corn’, label: ’Corn ?’, }, { id: ’carrot’, label: ’Carrot ?’, }, { id: ’eggplant’, label: ’Eggplant ?’, }, { id: ’tomato’, label: ’Tomato ?’, } ], } ], }; }, mounted: function(){ }, methods: { DRHA_EFaultModeTree_handleSelect(node,instanceId){ console.log('Select'); this.DRHA_EFaultModeTree_lables.push(node.label); }, DRHA_EFaultModeTree_handleDeSelect(node,instanceId){ console.log('DeSelect'); for (let i = 0;i<this.DRHA_EFaultModeTree_lables.length;i++){ if(node.label == this.DRHA_EFaultModeTree_lables[i]){ this.DRHA_EFaultModeTree_lables.splice(i,1); } } }, } };</script>

以上這篇vue 監(jiān)聽(tīng) Treeselect 選擇項(xiàng)的改變操作就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 恩施市| 家居| 河西区| 河北省| 襄汾县| 乡宁县| 固安县| 沙湾县| 三穗县| 南澳县| 班玛县| 湖州市| 浙江省| 柳河县| 塔河县| 雷州市| 玛沁县| 湄潭县| 漳州市| 达日县| 淄博市| 泗水县| 四会市| 和田县| 武宁县| 六盘水市| 鄂尔多斯市| 宣恩县| 宜春市| 南康市| 德安县| 汨罗市| 钟祥市| 巫溪县| 新田县| 渑池县| 孟州市| 锡林浩特市| 桑日县| 大厂| 白河县|