李昊 4 vuotta sitten
vanhempi
commit
b93ac81284

+ 22 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Media/MediaRepository.cs

@@ -102,6 +102,13 @@ namespace GxPress.Repository.Implement.Media
                     categoryId = categoryId.Remove(categoryId.Length - 1, 1);
                     model.CategoryId = categoryId;
                     model.FullCategoryId = StringUtils.ObjectCollectionToString(result.CategoryId);
+                    var categoryName = "";
+                    foreach (var item in result.CategoryName)
+                    {
+                        categoryName += item.Split(",")[item.Split(",").Length - 1] + ",";
+                    }
+                    categoryName = categoryName.Remove(categoryName.Length - 1, 1);
+                    model.CategoryName = categoryName;
                     var id = await _repository.InsertAsync(model);
                     if (id > 0)
                     {
@@ -162,6 +169,21 @@ namespace GxPress.Repository.Implement.Media
             {
                 using (var transactionScope = new TransactionScope())
                 {
+                    var categoryId = "";
+                    foreach (var item in result.CategoryId)
+                    {
+                        categoryId += item.Split(",")[item.Split(",").Length - 1] + ",";
+                    }
+                    categoryId = categoryId.Remove(categoryId.Length - 1, 1);
+                    model.CategoryId = categoryId;
+                    model.FullCategoryId = StringUtils.ObjectCollectionToString(result.CategoryId);
+                    var categoryName = "";
+                    foreach (var item in result.CategoryName)
+                    {
+                        categoryName += item.Split(",")[item.Split(",").Length - 1] + ",";
+                    }
+                    categoryName = categoryName.Remove(categoryName.Length - 1, 1);
+                    model.CategoryName = categoryName;
                     await _repository.UpdateAsync(model);
                     //删除媒体库
                     await mediaLibraryRepository.DeleteAsync(Q.Where(nameof(Entity.tede2.Media.MediaLibrary.MediaId), result.Id));