詳解關于element級聯(lián)選擇器數(shù)據(jù)回顯問題
更新時間:2019年02月20日 11:14:35 作者:來一杯牛奶
這篇文章主要介紹了詳解關于element級聯(lián)選擇器數(shù)據(jù)回顯問題,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
element級聯(lián)選擇器數(shù)據(jù)回顯問題
對于前端小菜雞來說,被這個問題也是困擾了好久。也是百度的方法。
表單部分代碼:
<el-form-item label="部門名稱:" prop="deptId"> <el-cascader placeholder="請選擇部門" :props="depShowType" :options="deptData" filterable change-on-select v-model="SelectdeptId"> </el-cascader> </el-form-item>
data中定義:
depShowType:{ value:'id', label:'name', children:'nodes' }, SelectdeptId:[],
methods中:
// 編輯 handleEdit(data){ this.textShow=true; this.textForm=data; this.SelectdeptId=this.changeDetSelect(data.deptId,this.deptData) //數(shù)據(jù)雙向綁定 }, changeDetSelect(key,treeData){ let arr = []; // 在遞歸時操作的數(shù)組 let returnArr = []; // 存放結(jié)果的數(shù)組 let depth = 0; // 定義全局層級 // 定義遞歸函數(shù) function childrenEach(childrenData, depthN) { for (var j = 0; j < childrenData.length; j++) { depth = depthN; // 將執(zhí)行的層級賦值 到 全局層級 arr[depthN] = (childrenData[j].id); if (childrenData[j].id == key) { returnArr = arr.slice(0, depthN+1); //將目前匹配的數(shù)組,截斷并保存到結(jié)果數(shù)組, break } else { if (childrenData[j].nodes) { depth ++; childrenEach(childrenData[j].nodes, depth); } } } return returnArr; } return childrenEach(treeData, depth); },
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。