uniapp实现多级菜单选择u-select

 html


//此组件可以根据children的深度自动增加子级菜单


//mode是列数,single-column是单列,mutil-column-auto是多列根据数组深度扩充
//其中value-name是自定义将id替换为原来的value这个值

js

{
    show:false,
    
    defaultValue:[1],//默认选中第二项,当点击确定按钮的时候设置默认选择菜单中的第几项
    classList:[
        {
            id: '1',
            label: 'first'
            children:[
                id:'11',
                label:'nice'
            ]
        },
        {
            id: '2',
            label: 'second',
            children:[
                id:'12',
                label:'niceSecond'
            ]
        },
        {
            id: '3',
            label: 'third',
            children:[
                id:'13',
                label:'niceThird'
            ]
        }
    ]
}
methods:{
    changeSelectClass(index) {
       console.log(index);
    },
    selectconfirm(e) {
       console.log(e);
    }
    

}

 

你可能感兴趣的:(uni-app)