Commit 0c2c258a authored by liudong1993's avatar liudong1993

Merge branch 'sdzq' of http://gitlab.oytour.com/Kui2/mall.oytour.com into sdzq-ld

parents b0a659d3 1a882c48
...@@ -2004,6 +2004,7 @@ namespace Mall.WebApi.Controllers ...@@ -2004,6 +2004,7 @@ namespace Mall.WebApi.Controllers
{ {
resultMallShopStyle?.main, resultMallShopStyle?.main,
resultMallShopStyle?.secondary, resultMallShopStyle?.secondary,
resultMallShopStyle?.IsEducation,
}; };
var setting = new var setting = new
......
...@@ -983,7 +983,23 @@ namespace Mall.WebApi.Controllers.MallBase ...@@ -983,7 +983,23 @@ namespace Mall.WebApi.Controllers.MallBase
})); }));
} }
/// <summary>
/// 获取默认上传信息的详情
/// </summary>
/// <returns></returns>
public ApiResult GetDefaultFileStore()
{
var parms = RequestParm;
var query = new RB_File_Store();
query.TenantId = UserInfo.TenantId;
query.MallBaseId = parms.MallBaseId;
var model = mallBaseModule.GetFileStoreList(query).Where(x=>x.IsDefault==1).FirstOrDefault();
if (model == null)
{
model = new RB_File_Store();
}
return ApiResult.Success("获取成功", model);
}
#endregion #endregion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment