關於element級聯選擇器數據回顯問題

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);
},


此方法主要參考這位大神:https://segmentfault.com/u/li...

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章