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
<%@ 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" src="${pageContext.request.contextPath }/pms/pub/combobox/comboboxUtil.js" charset="utf-8"></script>
<!-- 批量增加 -->
<script type="text/javascript">
    $(function() {
        $.loadComboboxData($("#eqp_type_id"),"EQPCATEGORY",false);
        $.loadComboboxData($("#shiftId"),"SHIFT",false);
        $.loadComboboxData($("#teamId"),"TEAM",false);
        $("#paul_id").combobox({  
            url:"${pageContext.request.contextPath}/pms/sys/eqpcategory/queryMdEqpCategory.do",
            valueField:'id',  
            textField:'name'  
        }); 
        $("#date").attr("setValue",new Date());
    });
    
</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>批量添加日保养</legend>
                <table class="table" style="width:97%;">
                    <tr>
                        <th>日保计划名称</th>
                        <td colspan="3">
                            <input name="name" type="text" class="easyui-validatebox"  data-options="width:120,editable:true,required:true,prompt:'请输入日保养名称'"/>
                        </td>
                    </tr>
                    <tr>
                        <th>设备类型</th>
                        <td>
                            <select id="eqp_type_id" name="eqp_type_id" data-options="panelHeight:'auto',width:175,editable:false,required:true,prompt:'请选择设备类型'"></select>
                        </td>
                        <th>日保养规则</th>
                        <td>
                            <select id="paul_id" name="paul_id" class="easyui-combobox" data-options="panelHeight:'auto',width:175,editable:false,required:true,prompt:'请选择日保养规则'"></select>
                        </td>
                    </tr>
                    <tr>
                        <th>班次</th>
                        <td>
                            <select id="shiftId" name="shiftId" class="easyui-combobox" data-options="width:140,editable:false,required:true,prompt:'请选择班次'"></select>
                        </td>
                        <th>班组</th>
                        <td>
                            <select id="teamId" name="teamId" class="easyui-combobox" data-options="width:140,editable:false,required:true,prompt:'请选择班组'"></select>
                        </td>
                    </tr>
                    <tr>
                        <th>计划开始时间</th>
                        <td>
                            <input name="stim" type="text" class="easyui-my97" datefmt="yyyy-MM-dd HH:mm:ss" style="width:140px" data-options="required:true,prompt:'请选择结束时间'"/>
                        </td>
                        <th>计划结束时间</th>
                        <td>
                            <input name="etim" type="text" class="easyui-my97" datefmt="yyyy-MM-dd HH:mm:ss" style="width:140px" data-options="required:true,prompt:'请选择结束时间'"/>
                        </td>
                    </tr>
                    
                </table>
            </fieldset>
        </form>
    </div>
</div>