|
@@ -48,6 +48,13 @@ namespace Controllers
|
|
[Route("/v1/kxsconfig/app/appBottomNavs")]
|
|
[Route("/v1/kxsconfig/app/appBottomNavs")]
|
|
public IActionResult AppBottomNavs([FromQuery] AppAppBottomNavsDto parm)
|
|
public IActionResult AppBottomNavs([FromQuery] AppAppBottomNavsDto parm)
|
|
{
|
|
{
|
|
|
|
+ string kind = Function.CheckNull(parm.kind);
|
|
|
|
+ if(kind.Contains("/"))
|
|
|
|
+ {
|
|
|
|
+ string[] data = kind.Split('/');
|
|
|
|
+ parm.kind = data[0];
|
|
|
|
+ parm.appVersion = data[1];
|
|
|
|
+ }
|
|
var response = _AppBottomNavsService.AppBottomNavs(parm);
|
|
var response = _AppBottomNavsService.AppBottomNavs(parm);
|
|
response.Extra = new Dictionary<string, object>();
|
|
response.Extra = new Dictionary<string, object>();
|
|
response.Extra.Add("greyStyle", "");
|
|
response.Extra.Add("greyStyle", "");
|
|
@@ -66,6 +73,13 @@ namespace Controllers
|
|
[Route("/v1/kxsconfig/app/staticFiles")]
|
|
[Route("/v1/kxsconfig/app/staticFiles")]
|
|
public IActionResult StaticFiles([FromQuery] AppStaticFilesDto parm)
|
|
public IActionResult StaticFiles([FromQuery] AppStaticFilesDto parm)
|
|
{
|
|
{
|
|
|
|
+ string kind = Function.CheckNull(parm.kind);
|
|
|
|
+ if(kind.Contains("/"))
|
|
|
|
+ {
|
|
|
|
+ string[] data = kind.Split('/');
|
|
|
|
+ parm.kind = data[0];
|
|
|
|
+ parm.appVersion = data[1];
|
|
|
|
+ }
|
|
var response = _FileUpdateInfoService.StaticFiles(parm);
|
|
var response = _FileUpdateInfoService.StaticFiles(parm);
|
|
OssConfigs ossConfigs = new();
|
|
OssConfigs ossConfigs = new();
|
|
AppSettings.Bind("OssConfigs", ossConfigs);
|
|
AppSettings.Bind("OssConfigs", ossConfigs);
|
|
@@ -89,6 +103,13 @@ namespace Controllers
|
|
[Route("/v1/kxsconfig/app/pageInfo")]
|
|
[Route("/v1/kxsconfig/app/pageInfo")]
|
|
public IActionResult PageInfo([FromQuery] AppPageInfoDto parm)
|
|
public IActionResult PageInfo([FromQuery] AppPageInfoDto parm)
|
|
{
|
|
{
|
|
|
|
+ string kind = Function.CheckNull(parm.kind);
|
|
|
|
+ if(kind.Contains("/"))
|
|
|
|
+ {
|
|
|
|
+ string[] data = kind.Split('/');
|
|
|
|
+ parm.kind = data[0];
|
|
|
|
+ parm.appVersion = data[1];
|
|
|
|
+ }
|
|
OssConfigs ossConfigs = new();
|
|
OssConfigs ossConfigs = new();
|
|
AppSettings.Bind("OssConfigs", ossConfigs);
|
|
AppSettings.Bind("OssConfigs", ossConfigs);
|
|
string modulePath = parm.modulePath + ".html";
|
|
string modulePath = parm.modulePath + ".html";
|
|
@@ -98,7 +119,11 @@ namespace Controllers
|
|
response.dataId = Function.MD5_16(response.id.ToString() + "123890");
|
|
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;
|
|
|
|
|
|
+ if(!string.IsNullOrEmpty(parm.appVersion))
|
|
|
|
+ {
|
|
|
|
+ kind += "/" + parm.appVersion;
|
|
|
|
+ }
|
|
|
|
+ string PagePath = "template/app/" + kind + "/" + response.modulePath;
|
|
string pageContent = Function.GetNetFileContent(ossConfigs.Host + PagePath);
|
|
string pageContent = Function.GetNetFileContent(ossConfigs.Host + PagePath);
|
|
response.moduleContent = pageContent; //模板内容
|
|
response.moduleContent = pageContent; //模板内容
|
|
}
|
|
}
|