You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
2.7 KiB
114 lines
2.7 KiB
using System.Collections.Generic;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Tree
|
|
{
|
|
/// <summary>
|
|
/// 树形视图模型
|
|
/// </summary>
|
|
public class TreeViewModel
|
|
{
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
public TreeViewModel()
|
|
{
|
|
nodes = new List<TreeViewModel>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="nodeId">j节点Id</param>
|
|
/// <param name="pId">父节点Id</param>
|
|
public TreeViewModel(int nodeId, int pId)
|
|
{
|
|
this.nodeId = nodeId;
|
|
pid = pId;
|
|
nodes = new List<TreeViewModel>();
|
|
}
|
|
|
|
/**
|
|
* 生成一个节点
|
|
* @param nodeId
|
|
* @param pId
|
|
* @param text
|
|
* @param icon
|
|
* @param href
|
|
*/
|
|
public TreeViewModel(int nodeId, int pId, string text, string icon, string href)
|
|
{
|
|
this.nodeId = nodeId;
|
|
pid = pId;
|
|
this.text = text;
|
|
this.icon = icon;
|
|
this.href = href;
|
|
nodes = new List<TreeViewModel>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 树的节点Id,区别于数据库中保存的数据Id
|
|
/// </summary>
|
|
public long nodeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 树的父节点Id
|
|
/// </summary>
|
|
public long pid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 节点名称
|
|
/// </summary>
|
|
public string text { get; set; }
|
|
|
|
/// <summary>
|
|
/// 节点图标
|
|
/// </summary>
|
|
public string icon { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点击节点触发的链接
|
|
/// </summary>
|
|
public string href { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子节点
|
|
/// </summary>
|
|
public List<TreeViewModel> nodes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 节点标签
|
|
/// </summary>
|
|
public long tags { get; set; }
|
|
|
|
/// <summary>
|
|
/// 节点状态
|
|
/// </summary>
|
|
public TreeViewSateModel state { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 树形视图节点选择状态
|
|
/// </summary>
|
|
public class TreeViewSateModel
|
|
{
|
|
/// <summary>
|
|
/// 选中
|
|
/// </summary>
|
|
public bool @checked { get; set; }
|
|
|
|
/// <summary>
|
|
/// 显示或隐藏
|
|
/// </summary>
|
|
public bool? disabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// 展开
|
|
/// </summary>
|
|
public bool? expanded { get; set; }
|
|
|
|
/// <summary>
|
|
/// 选中
|
|
/// </summary>
|
|
public bool? selected { get; set; }
|
|
}
|
|
}
|