zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
92
93
94
95
96
<%@ 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_id"),"ALLEQPS",false);
        $.loadComboboxData($("#shift_id"),"SHIFT",false);
        $.loadComboboxData($("#team_id"),"TEAM",false);
        $("#paul_id").combobox({
            url:"${pageContext.request.contextPath}/pms/sys/eqpcategory/queryMdEqpCategory.do",
            valueField:'id',
            textField:'name'
        });
        $("#sdate").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>
                <br/>
                <table class="table" style="width:97%;">
                    <tr>
                        <th>设备名称</th>
                        <td>
                            <select id="eqp_id" name="eqp_id" class="easyui-combobox" data-options="panelHeight:'auto',width:140,panelHeight:150,editable:false,required:true,prompt:'请选择设备名称'"></select>
                        </td>
                        <th>剔除类型</th>
                        <td>
                            <select id="type_id" name="type_id" class="easyui-combobox"  style="width:140px;">
                                <option value="">请选择</option>
                                <option value="1">固定停机</option>
                                <option value="2">不可控停机</option>
                            </select>
                        </td>
                    </tr>
                    <tr>
                        <th>剔除类型</th>
                        <td>
                            <select id="type_name" name="type_name" class="easyui-combobox"  style="width:140px;">
                                <option value="">请选择</option>
                                <option value="就餐">就餐</option>
                                <option value="试牌">试牌</option>
                                <option value="保养">保养</option>
                                <option value="换牌">换牌</option>
                                <option value="停电">停电</option>
                                <option value="停水">停水</option>
                            </select>
                        </td>
                        <th>班次</th>
                        <td>
                            <select id="shift_id" name="shift_id" class="easyui-combobox" data-options="width:140,editable:false,required:true,prompt:'请选择班次'"></select>
                        </td>
                    </tr>
                 <%--   <tr>
                        <th>班组:</th>
                        <td colspan="3">
                            <select name="team_id" id="team_id" type="text" class="easyui-validatebox"  data-options="width:140,editable:true,required:true,prompt:'请选择班组'"/>
                        </td>
                    </tr>--%>
                    <tr>
                        <th>计划日期</th>
                        <td>
                            <input id="sdate" name="sdate" type="text" class="easyui-my97" datefmt="yyyy-MM-dd" style="width:140px" data-options="required:true,prompt:'请选择计划日期'"/>
                        </td>
<%--                        <th>至</th>--%>
<%--                        <td>--%>
<%--                            <input name="edate" type="text" class="easyui-my97" datefmt="yyyy-MM-dd" style="width:140px" data-options="required:true,prompt:'请选择结束时间'"/>--%>
<%--                        </td>--%>
                    </tr>
                    <tr>
                        <th>计划时间</th>
                        <td>
                            <input id="stime" name="stime" class="easyui-timespinner"  style="width:140px;height:26px;"  required="required" data-options="min:'06:30',showSeconds:true" />
                        </td>
                        <th>至</th>
                        <td>
                            <input id="etime" name="etime" class="easyui-timespinner"  style="width:140px;height:26px;"  required="required" data-options="min:'06:30',showSeconds:true" />
                        </td>
                    </tr>
                    <tr>
                        <th>备注:</th>
                        <td colspan="3">
                            <textarea name="remark" id="remark" type="text" class="easyui-validatebox"  data-options="width:640,editable:true,prompt:'请输入备注'"/>
                        </td>
                    </tr>
                </table>
            </fieldset>
        </form>
    </div>
</div>