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
<%@ 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">
</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: 100%;">
                    <tr>
                        <th>起始时间</th>
                        <td>
                            <input name="id" type="hidden" value="${filterCount.id}"/>
                            <input name="date" type="text" class="easyui-my97" datefmt="yyyy-MM" style="width:130px" value="${filterCount.date}"/>
                        </td>
                        </tr>
            
                    <tr>
                        <th>车间</th>
                        <td>
                            <select id="workShop" name="workShop" data-options="panelHeight:'auto',width:130,editable:false,required:true">
                                <option value="2" <c:if test="${filterCount.workShop}==2">selected</c:if>>卷包车间</option>
                                <option value="6" <c:if test="${filterCount.workShop}==6">selected</c:if>>成型车间</option>
                            </select>
                        </td>
                    </tr>
                    
                    <tr>
                        <th>当月机零配件修旧利废金额(万元)</th>
                        <td>
                            <input name="repairamount" class="easyui-numberspinner" precision="2" 
                            required="required" 
                            value="${filterCount.repairamount}"
                            />
                        </td>
                    </tr>
                    <tr>
                        <th>TnPM管理年度计划执行率(%)</th>
                        <td>
                            <input name="tnpmRate" class="easyui-numberspinner" precision="2" 
                            required="required" 
                            value="${filterCount.tnpmRate}"
                            />
                        </td>
                        
                    </tr>
                </table>
            </fieldset>
        </form>
    </div>
</div>