|
@@ -1508,11 +1508,12 @@ namespace WingCloudServer.GeneralDocTools.Service
|
|
|
{
|
|
|
if (PublicEnumDic.TryGetValue(bodyItem.Trim(), out string enumValue))
|
|
|
{
|
|
|
- strTable += $"<td style='width:150px'><a style='text-decoration: underline;color: blue;' href='javascript:;'onclick='validateJump('DocHtml.html', '{enumValue}')'>{bodyItem.Trim().Split(".")?.LastOrDefault()}</a></td>";
|
|
|
+ // strTable += "<td style='width:150px'>"+"<a style='text-decoration: underline;color: blue;' href='javascript:;' onclick='validateJump('{FileName}', '{enumValue}')'>{bodyItem.Trim().Split(".")?.LastOrDefault()}</a></td>";
|
|
|
+ strTable += "<td style='width:150px'>"+"<a style=\"text-decoration: underline;color: blue;\" href=\"javascript:;\" onclick=\"validateJump(\'"+FileName+"\', \'"+enumValue+"\')\">"+bodyItem.Trim().Split(".")?.LastOrDefault()+"</a>"+"</td>";
|
|
|
}
|
|
|
else if (bodyItem == typeName)
|
|
|
{
|
|
|
- strTable += "<td style='width:150px'>" + CommonHelper.GetJsonDataTypeByString(bodyItem.Trim()) + "</td>";
|
|
|
+ strTable += "<td style='width:150px'>" + bodyItem.Trim() + "</td>";
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -1585,10 +1586,6 @@ namespace WingCloudServer.GeneralDocTools.Service
|
|
|
if (item.TypeFullName == "IList`1")
|
|
|
{
|
|
|
typeName = "[]";
|
|
|
- }
|
|
|
- if (item.Name == "MemberLiveDatas")
|
|
|
- {
|
|
|
-
|
|
|
}
|
|
|
typeName = CommonHelper.GetJsonDataTypeByString(typeName);
|
|
|
var childParamPropertyList = item.ParamPropertyList;
|