1.0.6 • Published 9 years ago

eg-drop-tree v1.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

eg-drop-tree

使用react构建pc端应用的下拉菜单解决方案,配合eagle-ui将使界面和功能更完善

MultiDropDown渲染树状层级勾选框,可支持无限层级,仅仅依赖简单的数据结构

code example(代码示例)

    import React, { Component ,PropTypes} from 'react';
    import {render} from 'react/lib/ReactDOM';
    require('./public.less');
    import MultiDropDown from "../../src/index.js";//联想功能组件
    export default class IndexModule extends Component {
        constructor(props,context){
            super(props,context);
        }
        render(){
            let mockMultiDropData=[
                {
                    "typeName": "第1.0级",
                    "children": [
                        {
                            "typeName": "第2.0级",
                            "children": [
                                {
                                "typeName": "第3.0级",
                                "children": [ ],
                                "leaf":true
                                },
                                {
                                    "typeName":"第3.1级",
                                    "children": [{
                                        "typeName":"第4.0级",
                                        "children": [
                                            {
                                                "typeName":"第5.0级",
                                                "children": [ ],
                                                "leaf":true
                                            },
                                            {
                                                "typeName": "第5.1级",
                                                "children": [ ]
                                            },
                                            {
                                                "typeName": "第5.2级",
                                                "children": [ ],
                                                "leaf":true
                                            }]
                                        },
                                        {
                                            "typeName": "第4.2级",
                                            "children": [ ]
                                        },
                                        {
                                            "typeName": "第4.3级",
                                            "children": [ ],
                                            "leaf":true
                                        }]
                                },
                                {
                                    "typeName": "第3.2级",
                                    "children": [ ]
                                },
                                {
                                    "typeName": "第3.3级",
                                    "children": [ ],
                                    "leaf":true
                                }
                            ]
                        },
                        {
                            "typeName": "第2.1级",
                            "children": [ ],
                            "leaf":true
                        }
                    ]
                },
                {
                    "typeName": "第1.0=级",
                    "children": [
                        {
                            "typeName":"第2.0=级",
                            "children": [
                                {
                                    "typeName": "3.0=级",
                                    "children": [ ],
                                    "leaf":true
                                }
                            ]
                        }
                    ]
                }
            ];
            var bu = [
                {id: 1,name: "交易后台"},
                {id: 2,name: "结婚1"}];
            let menuData=[
                { data:'近一个周的问题',callback:()=>{alert('clicked')}},
                { data:'近一个月的问题',callback:()=>{alert('clicked')}},
                { data:'一个月之前的问题',callback:()=>{alert('clicked')}}];
    
            return (
                <div className="paddingSpace">
    
                    <div style={{fontSize:'12px',display:'inline-block',width:'200px'}}>
                        <MultiDropDown dropDownData={mockMultiDropData} keyName='typeName' leafName='leaf' title="树状列表选择" ref="MultiDropDown"/>
                    </div>
    
                    <div className='demo-button-container'>
                        <div className='demo-button' style={{background:'red'}} onClick={()=>{this.getDropDownData('MultiDropDown')}}>点击获取树状列表的选择结果</div></div>
                </div>
            );
        }
        getDropDownData(type){
            alert(JSON.stringify(this.refs[type].formData));
        }
    }
    render(<IndexModule/>,document.getElementById('root'));

UI展示

树状下拉选项图 树状下拉选项图

instructions使用方式

请参考example/src/index.js文件

download(下载)

    #usage
        npm install eg-drop-tree
	#demo
	    npm run demo	
1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

0.1.10

9 years ago

1.0.0

9 years ago

0.1.7

9 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago