1、陕西建龙打包版本
2、drawio导入SFC 3、多系统并存修改
This commit is contained in:
@ -17,32 +17,35 @@ namespace HT.Cloud.Web.Areas.ReportManage.Controllers
|
||||
/// 绑定数据仓库的数据库ID
|
||||
/// </summary>
|
||||
private string systemDescription = GlobalContext.SystemConfig.SystemDescription;
|
||||
|
||||
[HttpGet]
|
||||
/// <summary>
|
||||
/// 绑定首页的系统名称
|
||||
/// </summary>
|
||||
private string MainPageSystemName = GlobalContext.SystemConfig.MainPageSystemName;
|
||||
[HttpGet]
|
||||
public async Task<ActionResult> GetMainPageInit()
|
||||
{
|
||||
var data = await _mainPageService.GetMainPageInit(systemDescription);
|
||||
var data = await _mainPageService.GetMainPageInit(MainPageSystemName);
|
||||
return Content(data);
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public async Task<ActionResult> GetMainPageChartInit()
|
||||
{
|
||||
var data = await _mainPageService.GetMainPageChartInit(systemDescription);
|
||||
var data = await _mainPageService.GetMainPageChartInit(MainPageSystemName);
|
||||
return Content(data);
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public async Task<ActionResult> GetRtData()
|
||||
{
|
||||
var data = await _mainPageService.GetRtData(systemDescription);
|
||||
var data = await _mainPageService.GetRtData(MainPageSystemName);
|
||||
return Content(data);
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public async Task<ActionResult> GetRtChartData()
|
||||
{
|
||||
var data = await _mainPageService.GetRtChartData(systemDescription);
|
||||
var data = await _mainPageService.GetRtChartData(MainPageSystemName);
|
||||
return Content(data);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user