【优化】优化新版treeTable下商品分类及菜单导航树形表格模式的排序问题。

【发布】发布0.7.0版本
This commit is contained in:
jianweie
2023-05-08 14:25:39 +08:00
parent 514c63da60
commit a83abb2e26
13 changed files with 46 additions and 23 deletions

View File

@@ -47,6 +47,11 @@ namespace CoreCms.Net.Model.ViewModels.UI
/// </summary>
public bool last { get; set; }
/// <summary>
/// 是否属于父节点
/// </summary>
public bool isParent { get; set; }
/// <summary>
/// 是否选中 0否1是
/// </summary>
@@ -56,6 +61,13 @@ namespace CoreCms.Net.Model.ViewModels.UI
/// 子
/// </summary>
public object children { get; set; }
/// <summary>
/// 其他数据
/// </summary>
public object otherData { get; set; }
}
/// <summary>