You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
226 lines
5.8 KiB
HTML
226 lines
5.8 KiB
HTML
2 years ago
|
<!DOCTYPE html>
|
||
|
|
||
|
<html><head>
|
||
|
|
||
|
<meta charset="utf-8">
|
||
|
|
||
|
<title>抽水蓄能电站智能化状态监测系统</title>
|
||
|
|
||
|
|
||
|
|
||
|
<meta name="description" content="Dashboard">
|
||
|
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
|
||
|
<!--Basic Styles-->
|
||
|
|
||
|
<link href="__PUBLIC__/style/bootstrap.css" rel="stylesheet">
|
||
|
|
||
|
<link href="__PUBLIC__/style/font-awesome.css" rel="stylesheet">
|
||
|
|
||
|
<link href="__PUBLIC__/style/weather-icons.css" rel="stylesheet">
|
||
|
|
||
|
|
||
|
|
||
|
<!--Beyond styles-->
|
||
|
|
||
|
<link id="beyond-link" href="__PUBLIC__/style/beyond.css" rel="stylesheet" type="text/css">
|
||
|
|
||
|
<link href="__PUBLIC__/style/demo.css" rel="stylesheet">
|
||
|
|
||
|
<link href="__PUBLIC__/style/typicons.css" rel="stylesheet">
|
||
|
|
||
|
<link href="__PUBLIC__/style/animate.css" rel="stylesheet">
|
||
|
|
||
|
<script language="JavaScript" type="text/javascript">
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<!-- Page Breadcrumb -->
|
||
|
|
||
|
<div class="page-breadcrumbs">
|
||
|
|
||
|
<ul class="breadcrumb">
|
||
|
|
||
|
<li>
|
||
|
|
||
|
<a href="{:url('index/index')}">主页</a>
|
||
|
|
||
|
</li>
|
||
|
|
||
|
<li class="active">设备编码配置</li>
|
||
|
|
||
|
</ul>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<!-- /Page Breadcrumb -->
|
||
|
|
||
|
|
||
|
|
||
|
<!-- Page Body -->
|
||
|
|
||
|
<div class="page-body">
|
||
|
|
||
|
|
||
|
|
||
|
<button type="button" tooltip="添加设备编码" class="btn btn-sm btn-azure btn-addon" onClick="javascript:window.location.href ='{:url('devsncfg/add',array('sid'=>input('sid')))}'"> <i class="fa fa-plus"></i> 添加设备编码
|
||
|
|
||
|
</button>
|
||
|
|
||
|
<div class="row">
|
||
|
|
||
|
<div class="col-lg-12 col-sm-12 col-xs-12">
|
||
|
|
||
|
<div class="widget">
|
||
|
|
||
|
<div class="widget-body">
|
||
|
|
||
|
<div class="flip-scroll">
|
||
|
|
||
|
<table class="table table-bordered table-hover">
|
||
|
|
||
|
<thead class="">
|
||
|
|
||
|
<tr>
|
||
|
|
||
|
<th class="text-center" style="text-wrap: none">设备ID</th>
|
||
|
|
||
|
<th class="text-center" style="text-wrap: none">CAC编码</th>
|
||
|
|
||
|
<th class="text-center" style="text-wrap: none">传感器编码</th>
|
||
|
|
||
|
<th class="text-center" style="text-wrap: none">被监测设备编码</th>
|
||
|
|
||
|
<th class="text-center" style="text-wrap: none">监测类型</th>
|
||
|
|
||
|
<th class="text-center" style="text-wrap: none">相别</th>
|
||
|
<th class="text-center" style="text-wrap: none">传感器序号</th>
|
||
|
<th class="text-center" style="text-wrap: none">操作</th>
|
||
|
|
||
|
</tr>
|
||
|
|
||
|
</thead>
|
||
|
|
||
|
<tbody>
|
||
|
|
||
|
{volist name="list" id="vo"}
|
||
|
|
||
|
<tr>
|
||
|
|
||
|
<td align="center" >{$vo.eqmid}</td>
|
||
|
|
||
|
<td align="center">{$vo.cacid}</td>
|
||
|
|
||
|
<td align="center">{$vo.sensorid}</td>
|
||
|
|
||
|
<td align="center">{$vo.equipmentid}</td>
|
||
|
|
||
|
<td align="center">{$vo.monitortype}</td>
|
||
|
<td align="center">{$vo.phase}</td>
|
||
|
<td align="center">{$vo.sensorindex}</td>
|
||
|
|
||
|
<td align="center">
|
||
|
<a href="{:url('devsncfg/edit',array('sensorid'=>$vo['sensorid'],'sid'=>$vo['eqmid']))}" class="btn btn-primary btn-sm shiny">
|
||
|
|
||
|
<i class="fa fa-edit"></i> 编辑
|
||
|
|
||
|
</a>
|
||
|
|
||
|
<a href="#" onclick="warning('确实要删除吗', '{:url('devsncfg/del',array('sensorid'=>$vo['sensorid'],'sid'=>$vo['eqmid']))}')" class="btn btn-danger btn-sm shiny">
|
||
|
|
||
|
<i class="fa fa-trash-o"></i> 删除
|
||
|
|
||
|
</a>
|
||
|
|
||
|
</td>
|
||
|
|
||
|
</tr>
|
||
|
|
||
|
{/volist}
|
||
|
|
||
|
</tbody>
|
||
|
|
||
|
</table>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<div class="row DTTTFooter" style="padding-top:15px;">
|
||
|
|
||
|
<div class="col-sm-4">
|
||
|
|
||
|
<div class="dataTables_info" id="simpledatatable_info" role="alert" aria-live="polite" aria-relevant="all">
|
||
|
|
||
|
<span> </span>
|
||
|
|
||
|
当前显示<span>{$list->currentPage()}</span>
|
||
|
|
||
|
<span>/</span><span>{$list->lastPage()}</span>
|
||
|
|
||
|
<span> </span>
|
||
|
|
||
|
共<span>{$list->total()}</span>条记录
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="col-sm-8" align="right">
|
||
|
|
||
|
|
||
|
{$list->render()}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<!-- /Page Body -->
|
||
|
|
||
|
|
||
|
<!--Basic Scripts-->
|
||
|
|
||
|
<script src="__PUBLIC__/style/jquery_002.js"></script>
|
||
|
|
||
|
<script src="__PUBLIC__/style/bootstrap.js"></script>
|
||
|
|
||
|
<script src="__PUBLIC__/style/jquery.js"></script>
|
||
|
|
||
|
<!--Beyond Scripts-->
|
||
|
|
||
|
<script src="__PUBLIC__/style/beyond.js"></script>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</body></html>
|