|
@@ -55,13 +55,14 @@ $(function () {
|
|
|
})
|
|
|
}
|
|
|
if (item.indexOf('secondId') > -1) {
|
|
|
+ console.log(item.indexOf('secondId'));
|
|
|
let secondIds = item.split('=')
|
|
|
dataList.secondId = decodeURIComponent(secondIds[1])
|
|
|
(dataList.data).map((item,index)=>{
|
|
|
if((item.children).length){
|
|
|
(item.children).map((atem,indexT)=>{
|
|
|
if(dataList.secondId==atem.id){
|
|
|
- if(indexT>=7){
|
|
|
+ if(indexT>=3){
|
|
|
heigFun(index)
|
|
|
};
|
|
|
$('.onSelect .preFirst').css('display', 'block').html(`
|
|
@@ -99,7 +100,7 @@ $(function () {
|
|
|
if((item.children).length){
|
|
|
(item.children).map((atem,indexT)=>{
|
|
|
if(dataList.secondId==atem.id){
|
|
|
- if(indexT>=7){
|
|
|
+ if(indexT>=3){
|
|
|
heigFun(index)
|
|
|
};
|
|
|
$('.onSelect .preFirst').css('display', 'block').html(`
|