예제 #1
0
        public async Task <IActionResult> ModifyHorizontalSpaceAsync(Int32 appHorizontal)
        {
            #region 参数验证
            Check.IfNullOrZero(appHorizontal);
            #endregion

            var userContext = await GetUserContextAsync();

            await _appServices.ModifyAppHorizontalSpacingAsync(userContext.Id, appHorizontal);

            return(Json(new ResponseSimple
            {
                IsSuccess = true,
                Message = "更改图标水平间距成功"
            }));
        }