方法
const findIndex = (needList, pId, cId, couId) => {
let indexList: number[] = [];
indexList[0] = needList.findIndex((item) => item.id === pId);
indexList[1] = needList[indexList[0]].children.findIndex((item) => item.id === cId);
indexList[2] = needList[indexList[0]].children[indexList[1]].children.findIndex((item) => item.id === couId);
return indexList;
};
调用
let index = findIndex(data, provinceId, cityId, countryId)
// index 就是一个索引数组 例如[2,3,3]
data为省市区三级联动列表
然后是 省市区id
版权声明:本文为namechenfl原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。