123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
-
- @{
- ViewBag.Title = "ServerHardwareMonitoringIndex";
- Layout = "~/Views/Shared/_MainLayoutPage.cshtml";
- }
- <style>
- #p .datagrid-cell {
- padding: 0 !important;
- }
- .Serious {
- width: 100px;
- text-align: center;
- line-height: 32px;
- background-color: #d54c55;
- }
- .Warning {
- width: 100px;
- text-align: center;
- line-height: 32px;
- background-color: #d9d97b;
- }
- .Normal {
- width: 100px;
- text-align: center;
- line-height: 32px;
- background-color: #63b563;
- }
- .myChart {
- width: 33%;
- height: 400px;
- margin-left: 2px;
- }
- </style>
- <div class="easyui-panel">
- <div id="Channeltb">
- <input id="userAccount" class="easyui-searchbox" data-options="prompt:'支持渠道,项目,负责人,服务类型',searcher:Enter_Submit" style="width:300px" />
- <a href="#" id="CustomAlerts-select" class="easyui-linkbutton">查询</a>
- </div>
- <div id="p" class="easyui-panel" data-options="fit:true,border:false">
- <table id="treegrid" data-options="title:'服务器硬件监控 ',fit:true"></table>
- </div>
- <iframe id="myChart" style="height: 510px;width:100%;">
- </iframe>
- </div>
- <script src="~/ViewModels/ServerHardwareMonitoringIndex.js"></script>
- <script type="text/javascript">
- var model = new viewModel();
- model.init();
- </script>
|