Commit e9a78921 by liulongfei

修复获取描述失败的问题

parent cad1ec6b
...@@ -230,6 +230,10 @@ namespace VIZ.Package.Service ...@@ -230,6 +230,10 @@ namespace VIZ.Package.Service
node.TypeSchema = pars[2]; node.TypeSchema = pars[2];
node.Type = this.GetControlFieldType(node.TypeSchema); node.Type = this.GetControlFieldType(node.TypeSchema);
node.Value = this.GetControlFieldValue(conn, obj.TreeNodePath, node.FieldIdentifier); node.Value = this.GetControlFieldValue(conn, obj.TreeNodePath, node.FieldIdentifier);
if (pars.Length >= 7)
{
node.Description = pars[6];
}
obj.AllFiledNodes.Add(node); obj.AllFiledNodes.Add(node);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment