VueWebCoreApi/DLL/DAL/SopManageMentDAL.cs
@@ -347,6 +347,13 @@
                }
                else
                {
                    //判断上传文件大小是否超过10M
                    if (file.Length > 1024 * 1024 * 10)
                    {
                        mes.code = "300";
                        mes.message = "文件大小不能超过10MB!";
                        return mes;
                    }
                    //获取上传文件,组合存储路径
                    string FileName = "SOP" + DateTime.Now.ToString("yyyyMMddhhmmss");
                    string filePath = "wwwroot/ProcessSopFile/" + FileName + file.FileName;     //通过此对象获取文件名(存文件地址)