李昊 4 years ago
parent
commit
18f3345e4d

+ 1 - 0
gx_api/GxPress/Infrastructure/GxPress.Common/Tools/StringUtils.cs

@@ -251,6 +251,7 @@ namespace GxPress.Common.Tools
         public static string RemoveDomain(string url)
         {
             if (string.IsNullOrEmpty(url)) return string.Empty;
+            url = url.Replace("service", "");
             return IsDomain(url) ? new Uri(url).PathAndQuery : url;
         }
 

+ 0 - 3
gx_api/GxPress/Model/GxPress.Entity/Sell.cs

@@ -1,7 +1,4 @@
 using System;
-using System.Collections.Generic;
-using System.Text;
-using Datory;
 using Datory.Annotations;
 
 namespace GxPress.Entity

+ 1 - 1
gx_api/GxPress/Model/GxPress.Result/Navigation/NavigationResult.cs

@@ -142,7 +142,7 @@ namespace GxPress.Result.Navigation
         /// 获取轮播
         /// </summary>
         /// <value></value>
-        public List<Entity.Slide> Sildes { get; set; }
+        public IEnumerable<Entity.Slide> Sildes { get; set; }
     }
     /// <summary>
     /// 导航数据的显示

+ 0 - 2
gx_api/GxPress/Repository/GxPress.Repository.Implement/SellRepository.cs

@@ -1,7 +1,6 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using System.Text;
 using System.Threading.Tasks;
 using System.Transactions;
 using AutoMapper;
@@ -13,7 +12,6 @@ using GxPress.Entity;
 using GxPress.Repository.Interface;
 using GxPress.Request.Sell;
 using GxPress.Result.HumanAffairs;
-using GxPress.Result.Print;
 using GxPress.Result.sell;
 using Microsoft.Extensions.Options;
 using Datory;