|
@@ -31,7 +31,7 @@ namespace Services
|
|
|
{
|
|
|
//开始拼装查询条件
|
|
|
var predicate = Expressionable.Create<PageUpdateInfo>();
|
|
|
- predicate = predicate.And(m => m.appVersion.Contains(parm.appVersion));
|
|
|
+ predicate = predicate.And(m => m.appVersion == parm.appVersion);
|
|
|
predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.kind), m => m.kind.Contains(parm.kind));
|
|
|
predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.title), m => m.title.Contains(parm.title));
|
|
|
predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.modulePath), m => m.modulePath.Contains(parm.modulePath));
|
|
@@ -53,16 +53,21 @@ namespace Services
|
|
|
{
|
|
|
OssConfigs ossConfigs = new();
|
|
|
AppSettings.Bind("OssConfigs", ossConfigs);
|
|
|
- GetSystemFiles(ossConfigs, parm.kind);
|
|
|
+ string kind = parm.kind;
|
|
|
+ if(!string.IsNullOrEmpty(parm.appVersion))
|
|
|
+ {
|
|
|
+ kind += "/" + parm.appVersion;
|
|
|
+ }
|
|
|
+ GetSystemFiles(ossConfigs, kind);
|
|
|
foreach (string filename in SystemFiles)
|
|
|
{
|
|
|
string template = filename.Substring(filename.LastIndexOf("/") + 1);
|
|
|
if (template.EndsWith(".html"))
|
|
|
{
|
|
|
- PageUpdateInfo check = GetFirst(m => m.modulePath == template && m.kind == parm.kind);
|
|
|
+ PageUpdateInfo check = GetFirst(m => m.modulePath == template && m.kind == parm.kind && m.appVersion == parm.appVersion);
|
|
|
if (check == null)
|
|
|
{
|
|
|
- string ModuleContent = Function.GetNetFileContent(ossConfigs.Host + "template/app/" + parm.kind + "/" + template);
|
|
|
+ string ModuleContent = Function.GetNetFileContent(ossConfigs.Host + "template/app/" + kind + "/" + template);
|
|
|
if (!string.IsNullOrEmpty(ModuleContent))
|
|
|
{
|
|
|
string admintitle = "";
|
|
@@ -80,7 +85,7 @@ namespace Services
|
|
|
title = admintitle;
|
|
|
// }
|
|
|
}
|
|
|
- var item = GetFirst(m => m.modulePath == template);
|
|
|
+ var item = GetFirst(m => m.modulePath == template && m.appVersion == parm.appVersion);
|
|
|
if(item == null)
|
|
|
{
|
|
|
Add(new PageUpdateInfo()
|
|
@@ -100,6 +105,7 @@ namespace Services
|
|
|
modulePath = template,
|
|
|
moduleVersion = 1,
|
|
|
mustUpdate = true,
|
|
|
+ appVersion = Function.CheckNull(parm.appVersion),
|
|
|
});
|
|
|
}
|
|
|
else
|