cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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>