initial commit
This commit is contained in:
147
gloam/WebRoot/process/serviceInfoList.html
Normal file
147
gloam/WebRoot/process/serviceInfoList.html
Normal file
@@ -0,0 +1,147 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
#include("/common/header.html")
|
||||
<style type="text/css">
|
||||
td{
|
||||
text-align: center;
|
||||
}
|
||||
.img1 {
|
||||
width:18px;
|
||||
height: 18px;
|
||||
}
|
||||
.img2 {
|
||||
width:18px;
|
||||
height: 18px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="bcColor noScroll-y aC">
|
||||
<!--中间部分右边开始-->
|
||||
<div class="container-fluid-full">
|
||||
<div class="row-fluid">
|
||||
<noscript>
|
||||
<div class="alert alert-block span10">
|
||||
<h4 class="alert-heading">
|
||||
Warning!
|
||||
</h4>
|
||||
<p>
|
||||
You need to have
|
||||
<a href="http://en.wikipedia.org/wiki/JavaScript"
|
||||
target="_blank">JavaScript</a> enabled to use this site.
|
||||
</p>
|
||||
</div>
|
||||
</noscript>
|
||||
|
||||
<!-- start: Content -->
|
||||
<div id="content" class="span10" >
|
||||
<div class="row-fluid " style="margin-top:10px">
|
||||
<div class="box">
|
||||
<div class="box-header" data-original-title>
|
||||
<h2>
|
||||
<i class=" halflings-icon align-justify"></i><span
|
||||
class="break"></span>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="box-content lianxiang" >
|
||||
<table class="table table-striped table-bordered" id="info" >
|
||||
<thead>
|
||||
<tr>
|
||||
<th style='text-align:center;vertical-align: middle;'>
|
||||
<span>i18n_procInfoList.text.strengthened_n81i</span>
|
||||
</th>
|
||||
<th style='text-align:center;vertical-align: middle;'>
|
||||
<span>i18n_procInfoList.text.optimized_n81i</span>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr class="odd gradeX" >
|
||||
<td class="logmessage" >
|
||||
<span><img class="img1" src="/img/yes.gif" border="0" align="middle" ></span>
|
||||
</td>
|
||||
<td class="logmessage" >
|
||||
<span><img class="img1" src="/img/yes.gif" border="0" align="middle" ></span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="content" class="span10">
|
||||
<div class="row-fluid " style="margin-top:10px">
|
||||
<div class="box">
|
||||
<div class="box-header" data-original-title>
|
||||
<h2>
|
||||
<i class=" halflings-icon align-justify"></i><span
|
||||
class="break"></span>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="box-content lianxiang">
|
||||
<table class="table table-striped table-bordered" id="info" >
|
||||
<thead>
|
||||
<tr>
|
||||
<th style='text-align:center;vertical-align: middle;'>
|
||||
<span>i18n_procInfoList.text.sysname_n81i</span>
|
||||
</th>
|
||||
<th style='text-align:center;vertical-align: middle;'>
|
||||
<span>i18n_procInfoList.text.serviceName_n81i</span>
|
||||
</th>
|
||||
<th style='text-align:center;vertical-align: middle;'>
|
||||
<span>i18n_procInfoList.text.serviceState_n81i</span>
|
||||
</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
#if(osInfoList!=null && osInfoList.size()!=0)
|
||||
#for(osInfo:osInfoList)
|
||||
#set(osName="")
|
||||
#for(key:osInfo.keySet())
|
||||
#if(!key.equals('sort') && osInfo.get(key).size()!=0)
|
||||
<tr class="odd gradeX" >
|
||||
<td class="logmessage" rowspan=#(osInfo.get(key).size()+1) >
|
||||
<span>#(key)</span>
|
||||
</td>
|
||||
</tr>
|
||||
#set(osName=key)
|
||||
#end
|
||||
#end
|
||||
#for(serviceInfo:osInfo.get(osName))
|
||||
<tr class="odd gradeX">
|
||||
<td class="logmessage">
|
||||
<span>#(serviceInfo.serviceName)</span>
|
||||
</td>
|
||||
<td class="logmessage">
|
||||
#if(serviceInfo.status==1)
|
||||
<img class="img2" alt="i18n_procInfoList.text.ok_n81i" src="/img/yes.gif" border="0" align="middle" >
|
||||
#else
|
||||
<img class="img2" alt="i18n_procInfoList.text.no_n81i" src="/img/no.gif" border="0" align="middle" >
|
||||
#end
|
||||
</td>
|
||||
</tr>
|
||||
#end
|
||||
#end
|
||||
#else
|
||||
<tr>
|
||||
<td colspan="6" height="35"
|
||||
align="center">
|
||||
i18n_ctsil.message.noRecord_n81i
|
||||
</td>
|
||||
</tr>
|
||||
#end
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user