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
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
<jsp:include page="../../../../initlib/initAll.jsp"></jsp:include>
<script type="text/javascript" src="comboboxUtil.js" charset="utf-8"></script>
<script type="text/javascript">
    $(function(){
        $.loadComboboxData($("#shift"),"shift");
        $.loadComboboxData($("#team"),"team");
        $.loadComboboxData($("#workshop"),"workshop");
        $.loadComboboxData($("#machinetypebeans"),"machinetypebeans");
    });
</script>
</head>
<body>
<select id="shift" class="easyui-combobox" data-options="panelHeight:'auto',width:100,editable:false">
</select>
<select id="team" class="easyui-combobox" data-options="panelHeight:'auto',width:100,editable:false">
</select>
<select id="workshop" class="easyui-combobox" data-options="panelHeight:'auto',width:100,editable:false">
</select>
<select id="machinetypebeans" class="easyui-combobox" data-options="panelHeight:'auto',width:100,editable:false">
</select>
</body>
</html>