element級聯選擇器數據回顯問題
對于前端小菜雞來說,被這個問題也是困擾了好久。也是百度的方法。
表單部分代碼:
<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) //數據雙向綁定},changeDetSelect(key,treeData){let arr = []; // 在遞歸時操作的數組let returnArr = []; // 存放結果的數組let depth = 0; // 定義全局層級// 定義遞歸函數function childrenEach(childrenData, depthN) { for (var j = 0; j < childrenData.length; j++) { depth = depthN; // 將執行的層級賦值 到 全局層級 arr[depthN] = (childrenData[j].id); if (childrenData[j].id == key) { returnArr = arr.slice(0, depthN+1); //將目前匹配的數組,截斷并保存到結果數組, break } else { if (childrenData[j].nodes) { depth ++; childrenEach(childrenData[j].nodes, depth); } } } return returnArr;}return childrenEach(treeData, depth);},以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持錯新站長站。
新聞熱點
疑難解答
圖片精選