代码无效引用清理,试压包资料界面看板修改

This commit is contained in:
2025-10-10 14:33:21 +08:00
parent 87fb529521
commit 55b798135c
933 changed files with 5897 additions and 7541 deletions
@@ -49,7 +49,7 @@ namespace FineUIPro.Web.AttachFile
// 文件名完整路径
string fileName = postedFile.FileName;
// 文件名保存的服务器路径
string savedFileName = GetSavedFileName(fileName,owner).Replace('#', '-'); ;
string savedFileName = GetSavedFileName(fileName, owner).Replace('#', '-'); ;
postedFile.SaveAs(context.Server.MapPath("~/" + attachPath + "/" + savedFileName));
string shortFileName = GetFileName(fileName);
@@ -123,7 +123,7 @@ namespace FineUIPro.Web.AttachFile
return shortFileName;
}
private string GetSavedFileName(string fileName,string owner)
private string GetSavedFileName(string fileName, string owner)
{
fileName = fileName.Replace(":", "_").Replace(" ", "_").Replace("\\", "_").Replace("/", "_");
if (!owner.Contains("DocAttachUrl"))