|
@@ -49,6 +49,8 @@ namespace Controllers
|
|
public IActionResult AppBottomNavs([FromQuery] AppAppBottomNavsDto parm)
|
|
public IActionResult AppBottomNavs([FromQuery] AppAppBottomNavsDto parm)
|
|
{
|
|
{
|
|
var response = _AppBottomNavsService.AppBottomNavs(parm);
|
|
var response = _AppBottomNavsService.AppBottomNavs(parm);
|
|
|
|
+ response.Extra = new Dictionary<string, object>();
|
|
|
|
+ response.Extra.Add("greyStyle", "");
|
|
return SUCCESS(response);
|
|
return SUCCESS(response);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -88,9 +90,11 @@ namespace Controllers
|
|
{
|
|
{
|
|
OssConfigs ossConfigs = new();
|
|
OssConfigs ossConfigs = new();
|
|
AppSettings.Bind("OssConfigs", ossConfigs);
|
|
AppSettings.Bind("OssConfigs", ossConfigs);
|
|
|
|
+ string modulePath = parm.modulePath + ".html";
|
|
var response = _PageUpdateInfoService.Queryable()
|
|
var response = _PageUpdateInfoService.Queryable()
|
|
- .First(x => x.moduleVersion == parm.moduleVersion)
|
|
|
|
|
|
+ .First(x => x.modulePath == modulePath)
|
|
.Adapt<AppPageInfoVo>() ?? new AppPageInfoVo();
|
|
.Adapt<AppPageInfoVo>() ?? new AppPageInfoVo();
|
|
|
|
+ response.dataId = Function.MD5_16(response.id.ToString() + "123890");
|
|
if (parm.moduleVersion < response.moduleVersion)
|
|
if (parm.moduleVersion < response.moduleVersion)
|
|
{
|
|
{
|
|
string PagePath = "template/app/" + parm.kind + "/" + response.modulePath;
|
|
string PagePath = "template/app/" + parm.kind + "/" + response.modulePath;
|