|
@@ -58,8 +58,16 @@ namespace GxPress.Repository.Implement.Navigation
|
|
|
model.LabelId = request.LabelId;
|
|
|
if (!string.IsNullOrEmpty(request.Name))
|
|
|
model.Name = request.Name;
|
|
|
+ if (!string.IsNullOrEmpty(request.LabelId))
|
|
|
+ model.LabelId = request.LabelId;
|
|
|
if (request.Sort > 0)
|
|
|
model.Sort = request.Sort;
|
|
|
+ if (request.IsSearch > 0)
|
|
|
+ model.IsSearch = request.IsSearch == 1;
|
|
|
+ if (request.IsSlide > 0)
|
|
|
+ model.IsSlide = request.IsSlide == 1;
|
|
|
+ if (request.TypeId > 0)
|
|
|
+ model.TypeId = request.TypeId;
|
|
|
return await _repository.UpdateAsync(model);
|
|
|
}
|
|
|
return false;
|