<!doctype html>
|
<html class="no-js">
|
<head>
|
<meta charset="utf-8">
|
<title>index</title>
|
[#include "/business/pages/include/static.html" /]
|
[#include "/component/sel.html" /]
|
<link rel="stylesheet" href="${common_static}/static/plugins/ztree/css/zTreeStyle/zTreeStyle.css" type="text/css">
|
<script type="text/javascript" src="${common_static}/static/plugins/ztree/js/jquery.ztree.all-3.5.min.js"></script>
|
</head>
|
|
<body>
|
|
|
<div>
|
<form id="myForm" method="post">
|
<table class="edit_layout" style="margin-top:30px">
|
<div>
|
<input type="hidden" name="flow_id" value="${info.flow_id}"/>
|
<input type="hidden" name="thirdlevelid" value="${info.thirdlevelid}"/>
|
<input type="hidden" name="memberid" value="${info.memberid}"/>
|
<input type="hidden" name="memberName" value="${info.memberName}"/>
|
<input type="hidden" name="createtime" value="${info.createtime}"/>
|
</div>
|
|
<tr>
|
<th><label class="required">配置名称:</label></th>
|
<td><input class="general" name="ciname" type="text" value="${info.ciname}"/></td>
|
|
|
</tr>
|
|
<tr>
|
<th><label>型号:</label></th>
|
<td><input class="general" name="membercode" type="text" value="${info.membercode}"/></td>
|
</tr>
|
<tr>
|
<th><label>厂商:</label></th>
|
<td>
|
<input class="general" name="mainufacturerid" type="hidden" value="${info.mainufacturerid}"/>
|
<input class="general" name="mainufacturername" type="text" value="${info.mainufacturername}"/>
|
|
</td>
|
</tr>
|
|
<tr>
|
<th><label>存放位置:</label></th>
|
<td><input class="general" name="position" type="text" value="${info.position}"/></td>
|
</tr>
|
|
|
<tr></tr>
|
<tr>
|
<th><label>IP地址(暂无):</label></th>
|
<td colspan="3"><input class="general" name="ci_ip" type="text"/></td>
|
</tr>
|
|
</table>
|
</form>
|
</div>
|
|
</body>
|
<script type="text/javascript">
|
//点击事件
|
function onDialogBtnClick(btnID, dialogID, config){
|
$("#myForm").submit();
|
window.top.hideDialog(dialogID);
|
}
|
|
</script>
|
</html>
|