|
|
|
@ -38,9 +38,6 @@ namespace UMC.ITME.Activities
|
|
|
|
|
|
|
|
|
|
ui.NewSection().AddCell("日志服务", new UIClick(request, "Log"));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var http = hosts.Providers.Where(r => r.Type == "http");
|
|
|
|
|
|
|
|
|
|
var httpUI = ui.NewSection();
|
|
|
|
@ -207,7 +204,7 @@ namespace UMC.ITME.Activities
|
|
|
|
|
fm.AddText("主域名", "domain", provider["domain"]);
|
|
|
|
|
var union = provider["union"] ?? ".";
|
|
|
|
|
var scheme = provider["scheme"] ?? "http";
|
|
|
|
|
fm.AddRadio("连接符", "union").Put(".", ".", union == ".").Put("-", "-", union == "-");
|
|
|
|
|
// fm.AddRadio("连接符", "union").Put(".", ".", union == ".").Put("-", "-", union == "-");
|
|
|
|
|
fm.AddRadio("主协议", "scheme").Put("http", "http", scheme == "http").Put("https", "https", scheme == "https");
|
|
|
|
|
fm.Submit("确认", $"{request.Model}.{request.Command}");
|
|
|
|
|
return fm;
|
|
|
|
@ -215,7 +212,7 @@ namespace UMC.ITME.Activities
|
|
|
|
|
|
|
|
|
|
provider.Attributes["scheme"] = Domains["scheme"];
|
|
|
|
|
provider.Attributes["domain"] = Domains["domain"];
|
|
|
|
|
provider.Attributes["union"] = Domains["union"];
|
|
|
|
|
// provider.Attributes["union"] = Domains["union"];
|
|
|
|
|
|
|
|
|
|
var pc = UMC.Data.Reflection.Configuration("assembly") ?? new ProviderConfiguration();
|
|
|
|
|
|
|
|
|
|