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.

217 lines
8.4 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">
</head>
<body>
<div class="page-breadcrumbs">
<ul class="breadcrumb">
<li>
<a href="{:url('devsncfg/lst',array('sid'=>input('sid')))}">设备编码管理</a>
</li>
<li class="active">编辑设备编码</li>
</ul>
</div>
<!-- /Page Breadcrumb -->
<!-- Page Body -->
<div class="page-body">
<div class="row">
<div class="col-lg-12 col-sm-12 col-xs-12">
<div class="widget">
<div class="widget-header bordered-bottom bordered-blue">
<span class="widget-caption">设备编码</span>
</div>
<div class="widget-body">
<div id="horizontal-form">
<form class="form-horizontal" role="form" action="" method="post">
<div class="form-group" style="display: none">
<label for="eqmid" class="col-sm-2 control-label no-padding-right">\"eqmid\"</label>
<div class="col-sm-6">
<input class="form-control" id="eqmid" placeholder="" name="eqmid" value="{$list.eqmid}" type="text">
</div>
</div>
<div class="form-group">
<label for="cacid" class="col-sm-2 control-label no-padding-right">CAC编码</label>
<div class="col-sm-6">
<input class="form-control" id="cacid" placeholder="" name="cacid" value="{$list.cacid}" type="text">
</div>
</div>
<div class="form-group">
<label for="sensorid1" class="col-sm-2 control-label no-padding-right">传感器编码</label>
<div class="col-sm-6">
<input class="form-control" id="sensorid1" placeholder="" name="sensorid1" value="{$list.sensorid}" type="text">
</div>
</div>
<div class="form-group">
<label for="equipmentid" class="col-sm-2 control-label no-padding-right">被监测设备编码</label>
<div class="col-sm-6">
<input class="form-control" id="equipmentid" placeholder="" name="equipmentid" value="{$list.equipmentid}" type="text">
</div>
</div>
<div class="form-group">
<label for="monitortype" class="col-sm-2 control-label no-padding-right">监测类型</label>
<div class="col-sm-6">
<input class="form-control" id="monitortype" placeholder="" name="monitortype" value="{$list.monitortype}" type="text" disabled="disabled" style="background:#CCCCCC" >
</div>
</div>
<div class="form-group">
<label for="phase" class="col-sm-2 control-label no-padding-right">相别</label>
<div class="col-sm-6">
<select class="form-control" id="phase" name="phase" >
<option {if $list.phase=='A相'} selected="selected" {/if}>A相</option>
<option {if $list.phase=='A1相'} selected="selected" {/if}>A1相</option>
<option {if $list.phase=='A2相'} selected="selected" {/if}>A2相</option>
<option {if $list.phase=='A3相'} selected="selected" {/if}>A3相</option>
<option {if $list.phase=='B相'} selected="selected" {/if}>B相</option>
<option {if $list.phase=='B1相'} selected="selected" {/if}>B1相</option>
<option {if $list.phase=='B2相'} selected="selected" {/if}>B2相</option>
<option {if $list.phase=='B3相'} selected="selected" {/if}>B3相</option>
<option {if $list.phase=='C相'} selected="selected" {/if}>C相</option>
<option {if $list.phase=='C1相'} selected="selected" {/if}>C1相</option>
<option {if $list.phase=='C2相'} selected="selected" {/if}>C2相</option>
<option {if $list.phase=='C3相'} selected="selected" {/if}>C3相</option>
<option {if $list.phase=='ABC相'} selected="selected" {/if}>ABC相</option>
</select>
</div>
</div>
<div class="form-group">
<label for="sensorindex" class="col-sm-2 control-label no-padding-right">传感器序号</label>
<div class="col-sm-6">
<select class="form-control" id="sensorindex" name="sensorindex" >
<option {if $list.sensorindex=='1'} selected="selected" {/if}>1</option>
<option {if $list.sensorindex=='2'} selected="selected" {/if}>2</option>
<option {if $list.sensorindex=='3'} selected="selected" {/if}>3</option>
<option {if $list.sensorindex=='4'} selected="selected" {/if}>4</option>
<option {if $list.sensorindex=='5'} selected="selected" {/if}>5</option>
<option {if $list.sensorindex=='6'} selected="selected" {/if}>6</option>
<option {if $list.sensorindex=='7'} selected="selected" {/if}>7</option>
<option {if $list.sensorindex=='8'} selected="selected" {/if}>8</option>
<option {if $list.sensorindex=='9'} selected="selected" {/if}>9</option>
<option {if $list.sensorindex=='10'} selected="selected" {/if}>10</option>
<option {if $list.sensorindex=='11'} selected="selected" {/if}>11</option>
<option {if $list.sensorindex=='12'} selected="selected" {/if}>12</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">保存信息</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!--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>