• tree的使用


    //html
    <ul id="tree"></ul>

     js

     function initTree() {
            $('#tree').tree({
                url: '/OnlineMonitoring/ashx/departMgr.ashx?type=tree'
                     
            });
    
        }
    

     后台

      根据父id返回当前子节点就好了。(父id为0时返回根节点)

    json示例

         [
        {
            "id": "2",
            "text": "监事会",
            "state": "closed"
        },
        {
            "id": "4259045978553",
            "text": "2",
            "state": "open"
        },
        {
            "id": "4259055249969",
            "text": "a",
            "state": "open"
        }
    ]

    id:node的id

    text:节点名称

    state:closed或open(closed说明有子项)

    贴上一个sqlserver procedure:

      

     create procedure [dbo].[Tree]
        @pid varchar(30)
     as
     begin
        select 
         a.department_id as [id],
         a.department_name as [text],
         case
         when
         (select COUNT(department_id) from dbo.department_info as b where b.department_parent_id=a.department_id)>0
         then 'closed' else 'open'
         end as [state]
         from dbo.department_info as a where a.department_parent_id=@pid;
     end

    根据pid返回树(pid为0时返回根节点)

      依赖:

             <link href="../Scripts/easyui/themes/default/easyui.css" rel="stylesheet" />
              <link href="../Scripts/easyui/themes/icon.css" rel="stylesheet" />
              <link href="../Scripts/easyui/demo/demo.css" rel="stylesheet" />
              <script type="text/javascript" src="../Scripts/easyui/jquery.min.js"></script>
                       <script type="text/javascript" src="../Scripts/easyui/jquery.easyui.min.js"></script>
                <script type="text/javascript" src="../Scripts/easyui/locale/easyui-lang-zh_CN.js"></script>

  • 相关阅读:
    c# 判断一个ip通不通 能不能ping通
    C#二进制与字符串互转换,十六进制转换为字符串、float、int
    将datagridview数据保为xml或txt文件
    笨办法学Python(九)
    笨办法学Python(八)
    笨办法学Python(七)
    Linux安装 NTFS 支持
    Linux安装中文字体包
    Oracle VM VirtualBox 共享文件夹设置
    Verilog频率计设计
  • 原文地址:https://www.cnblogs.com/gaocong/p/5832766.html
Copyright © 2020-2023  润新知