zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<script type="text/javascript">
        
</script>
<div class="easyui-layout" data-options="fit:true,border:false">
    <div data-options="region:'center',border:false" title="" style="overflow: hidden;padding:5px">
        <form id="form" method="post">
            <fieldset>
                <legend>wct菜单添加</legend>
                <table class="table" style="width: 100%;">
                    <tr>
                        <th>标题</th>
                        <td>
                            <input name="menu_title" value="${wctMenu.menu_title}" class="easyui-validatebox" data-options="required:true"/>
                        </td>
                        <th>链接</th>
                        <td>
                            <input name="menu_url" value="${wctMenu.menu_url}" class="easyui-validatebox" data-options="required:true" style="width:350px"/>
                        </td>
                        
                    </tr>
                    <tr>
                        <th>父级菜单</th>
                        <td>
                            <input name="upId" value="${wctMenu.upId}" class="easyui-validatebox" data-options="required:true"/>
                        </td>
                        <th>图标链接</th>
                        <td>
                            <input name="imgPath" value="${wctMenu.imgPath}" class="easyui-validatebox" data-options="" style="width:350px"/>
                        </td>
                    </tr>
                    <tr>
                        <th>模块</th>
                        <td>
                            <select id="modul" class="easyui-combobox" name="modul" data-options="panelHeight:200,width:150,panelWidth:120,editable:false,required:true">
                                 <option value="JTJK" <c:if test="${wctMenu.modul=='JTJK' }">selected="selected"</c:if> >机台监控</option>   
                                 <option value="SCDD" <c:if test="${wctMenu.modul=='SCDD' }">selected="selected"</c:if> >生产调度</option>   
                                 <option value="WLQQ" <c:if test="${wctMenu.modul=='WLQQ' }">selected="selected"</c:if> >物料请求</option>   
                                 <option value="ZLGL" <c:if test="${wctMenu.modul=='ZLGL' }">selected="selected"</c:if> >质量管理</option>   
                                 <option value="SCTJ" <c:if test="${wctMenu.modul=='SCTJ' }">selected="selected"</c:if> >生产统计</option>   
                                 <option value="SBGL" <c:if test="${wctMenu.modul=='SBGL' }">selected="selected"</c:if> >设备管理</option>   
                                 <option value="WDGL" <c:if test="${wctMenu.modul=='WDGL' }">selected="selected"</c:if> >文档管理</option>   
                                 <option value="XTGL" <c:if test="${wctMenu.modul=='XTGL' }">selected="selected"</c:if> >系统管理</option>   
                            </select>
                        </td>
                        <th>所属类型</th>
                        <td>
                            <select id="type" class="easyui-combobox" name="type" data-options="panelHeight:200,width:150,panelWidth:120,editable:false,required:true">
                                 <option value="0" <c:if test="${wctMenu.type==0 }">selected="selected"</c:if> >卷包机组菜单</option>   
                                 <option value="1" <c:if test="${wctMenu.type==1 }">selected="selected"</c:if> >封箱机菜单</option>   
                                 <option value="2" <c:if test="${wctMenu.type==2 }">selected="selected"</c:if> >成型机菜单</option>   
                                 <option value="3" <c:if test="${wctMenu.type==3 }">selected="selected"</c:if> >发射机菜单</option>   
                                 <option value="-1" <c:if test="${wctMenu.type==-1}">selected="selected"</c:if> >通用菜单</option>   
                            </select>
                        </td>
                    </tr>
                    <tr>
                        <th>是否启用</th>
                        <td>
                            <select class="easyui-combobox" name="del" data-options="panelHeight:200,width:150,panelWidth:120,editable:false,required:true">
                                 <option value="1" <c:if test="${wctMenu.del==1 }">selected="selected"</c:if> >禁用</option>   
                                 <option value="0" <c:if test="${wctMenu.del==0 }">selected="selected"</c:if> >启用</option>   
                            </select>
                        </td>
                        <th>序列</th>
                        <td>
                            <input name="grade" value="${wctMenu.grade}" class="easyui-numberspinner"  required="required" data-options="min:0,max:100,editable:false"/>
                        </td>
                    </tr>
                    <tr>
                        <th>默认地址</th>
                        <td colspan="3">
                            <input name="attr1" value="${wctMenu.attr1}" class="easyui-validatebox" data-options="" style="width:600px"/>
                        </td>
                    </tr>
                    <tr>
                        <th>编号</th>
                        <td>
                            <input name="id" value="${wctMenu.id}" class="easyui-numberbox" data-options="required:true"/>
                        </td>
                        <th>说明</th>
                        <td>
                            <textarea style="width: 100%;height:80px" readonly="readonly">各个模块菜单id分配:                                生产调度 9-60   物料请求61-120   质量管理121-180  生产统计181-240    设备管理241-300   文档管理301-360    系统管理361-420</textarea>
                        </td>
                    </tr>
                </table>
            </fieldset>
        </form>
    </div>
</div>