1、系统菜单调整;
2、系统看板UI调整; 3、事故事件功能 4、其他
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using BLL;
|
||||
using Model;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Web;
|
||||
using System.Web.Http;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace WebAPI.Controllers
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据汇总接口
|
||||
/// </summary>
|
||||
public class DataSyncServerController : ApiController
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取安全统计数据
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public async Task<Model.ReturnData> PostGetHSSEData()
|
||||
{
|
||||
var returnData = new Model.ReturnData();
|
||||
returnData.type = "HSSE";
|
||||
returnData.time = DateTime.Now.ToString();
|
||||
try
|
||||
{
|
||||
var task = await HSSEData_HSSEService.GetTodayHSSEData_HSSE();
|
||||
returnData.data = task;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
returnData.code = 0;
|
||||
returnData.message = ex.ToString();
|
||||
}
|
||||
return returnData;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -19,9 +19,9 @@ namespace WebAPI.Controllers
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
//public ActionResult Index()
|
||||
//{
|
||||
// //APIIDCardInfoService.ReadIDCardInfo("https://tccsg.cntcc.cn:17001/sggl/FileUpLoad/IdCardAttachUrl/2023-04/newfile/556bded6-ce4e-4e86-b177-19602e8bbd86.png");
|
||||
public ActionResult Index()
|
||||
{
|
||||
// //APIIDCardInfoService.ReadIDCardInfo("https://");
|
||||
// //var welder = APIWelderService.GetWelderByIdCard("370322198609181310", "b54d4274-0bb6-4e04-b03a-9165b2a062fb");
|
||||
// //if (welder != null)
|
||||
// //{
|
||||
@@ -135,7 +135,7 @@ namespace WebAPI.Controllers
|
||||
// //}
|
||||
// //APICommonService.SendSubscribeMessage("C4A62EC0-E5D3-4EBF-A5FA-E56AA89633C0", "人员信息待您审核", "123", string.Format("{0:yyyy-MM-dd HH:mm:ss}", DateTime.Now));
|
||||
|
||||
// ViewBag.Title = "Home Page";
|
||||
ViewBag.Title = "Home Page";
|
||||
// // var db = Funs.DB;
|
||||
// //var getInfoList = (from x in db.License_LicenseManager
|
||||
// // where (x.WorkStates == "1" || x.WorkStates == "0")
|
||||
@@ -160,8 +160,8 @@ namespace WebAPI.Controllers
|
||||
|
||||
// // AttachUrl = APIUpLoadFileService.getFileUrl(x.LicenseManagerId, null),
|
||||
// // }).ToList();
|
||||
// return View();
|
||||
//}
|
||||
return View();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user