2023-11-14

This commit is contained in:
李鹏飞 2023-11-14 11:53:38 +08:00
parent 51d64d6da1
commit 416366935c
1 changed files with 3 additions and 0 deletions

View File

@ -346,6 +346,9 @@ namespace FineUIPro.Web.common
public static string GetMajorZgl()
{
var num1 = Math.Round(100.0 * GetMajorClosedNum() / (GetMajorClosedNum() + GetMajorNotClosedNum()), 0).ToString();
if (num1 == "NaN") num1 = "0";
return num1;
}