This commit is contained in:
geh
2026-03-23 15:22:29 +08:00
parent 94584d242b
commit c38590add8
173 changed files with 19679 additions and 4413 deletions
@@ -392,7 +392,19 @@ namespace FineUIPro.Web.ProjectData
if (this.drpSubjectUnit.SelectedValue != BLL.Const._Null)
{
project.SubjectUnit = this.drpSubjectUnit.SelectedValue;
//获取集团的单位的api保存起来
var Url = BLL.UnitService.getUnitApiUrlByUnitId(this.drpSubjectUnit.SelectedValue);
if (!string.IsNullOrEmpty(Url))
{
var urls = Url.Split(',');
project.SubjectUnitApiUrl = urls[0];
if (urls.Length > 1)
{
project.SubjectUnitWebUrl = urls[1];
}
}
}
if (this.drpSubjectProject.SelectedValue != BLL.Const._Null)
{