管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2023-03-21 bf1af86387804c774198e2ef4d6d737d035eacf7
1
已修改5个文件
17 ■■■■■ 文件已修改
ExportMap/Controllers/ConvertController.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/Controllers/ExportController.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/ConvertUtils.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/SGUtils.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/cs/Tools.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ExportMap/Controllers/ConvertController.cs
@@ -42,7 +42,7 @@
            }
            catch (Exception ex)
            {
                LogOut.Error(ex.StackTrace);
                LogOut.Error(ex.Message + "\r\n" + ex.StackTrace);
                return ResponseMsg<string>.fail(ex.Message);
            }
        }
@@ -83,7 +83,7 @@
            }
            catch (Exception ex)
            {
                LogOut.Error(ex.StackTrace);
                LogOut.Error(ex.Message + "\r\n" + ex.StackTrace);
                return ResponseMsg<string>.fail(ex.Message);
            }
        }
@@ -122,7 +122,7 @@
            }
            catch (Exception ex)
            {
                LogOut.Error(ex.StackTrace);
                LogOut.Error(ex.Message + "\r\n" + ex.StackTrace);
                return ResponseMsg<string>.fail(ex.Message);
            }
        }
ExportMap/Controllers/ExportController.cs
@@ -40,7 +40,7 @@
            }
            catch (Exception ex)
            {
                LogOut.Error(ex.StackTrace);
                LogOut.Error(ex.Message + "\r\n" + ex.StackTrace);
                return ResponseMsg<string>.fail(ex.Message);
            }
        }
ExportMap/cs/ConvertUtils.cs
@@ -96,7 +96,7 @@
            }
            catch (Exception ex)
            {
                LogOut.Error(ex.StackTrace);
                LogOut.Error(ex.Message + "\r\n" + ex.StackTrace);
            }
            finally
            {
ExportMap/cs/SGUtils.cs
@@ -219,7 +219,10 @@
                if (meta.path.IndexOf("SG\\") > -1) continue;
                string source = Path.Combine(uploadFolder, meta.path);
                File.Move(source, Path.Combine(sgFolder, meta.id + "_" + meta.name));
                string target = Path.Combine(sgFolder, meta.id + "_" + meta.name);
                if (File.Exists(target)) File.Delete(target);
                File.Move(source, target);
                if ("mpt".Equals(meta.type))
                {
ExportMap/cs/Tools.cs
@@ -221,7 +221,7 @@
            }
            catch (Exception ex)
            {
                LogOut.Error(ex.StackTrace);
                LogOut.Error(ex.Message + "\r\n" + ex.StackTrace);
                str = ex.Message;
            }