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
97
<%@ 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($("#shift"),"SHIFT",false);
    $.loadComboboxData($("#team"),"TEAM",false);
    $.loadComboboxData($("#mat"),"MATPROD",false);
    var today = new Date();
    var month=today.getMonth()+1;
    if(month<10){month=("0"+month);}
    var date=today.getFullYear()+"-"+month+"-"+(today.getDate()<10?'0'+today.getDate():today.getDate());
    $("#date").val(date);
    //searchmat();
 
 
});
 
/*
$("#date").bind("input propertychange change",function(event){
    alert();
});
*/
 
/*function searchmat(){
 
    $("#mat").combobox({
        data:[{
            "id":"06250008",
            "text":"金圣(原生工坊)"
        },{
            "id":"06250021",
            "text":"金圣(硬红瑞香)"
        },{
            "id":"06250034",
            "text":"金圣(智圣出山)",
        },{
            "id":"06250010",
            "text":"金圣(智圣出山·国瓷)"
        },{
            "id":"06250011",
            "text":"金圣(智圣出山·国味)"
        }],
        valueField: 'id',
        textField: 'text'
    });
}*/
 
 
</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" enctype = "multipart/form-data" >
           <input name="param" id="param" value="hsl" type="hidden"/>
            <fieldset>
            <!--     <legend>含水率数据录入<font style="color:red;">***牌号必选***</font></legend> -->
                <table class="table" style="width: 100%;">
                    <tr>
                        <th>日期</th>
                        <td>
                            <input id="date" name="date" type="text" class="easyui-my97" datefmt="yyyy-MM-dd" style="width:130px"/>
                        </td>
                    </tr>
                    <tr>
                        <th>班次</th>
                        <td>
                            <select id="shift" name="shift" class="easyui-combobox" data-options="panelHeight:'auto',width:130,editable:false"></select>
                        </td>
                    </tr>
                    <tr>
                        <th>班组</th>
                        <td>
                            <select id="team" name="team" class="easyui-combobox" data-options="panelHeight:'auto',width:130,editable:false"></select>
                        </td>
                    </tr>
 
                    <tr>
                        <th>牌号</th>
                        <td>
                            <select id="mat" name="orderNumber" class="easyui-combobox" data-options="panelHeight:'auto',width:130,editable:false"></select>
                            <input name="inspectionType" id="type" value =1 type="hidden">
                        </td>
                    </tr>
                    <tr>
                        <th>样本数</th>
                        <td>
                            <input name="sampleNumber" id="sampleNumber" type="text" style="width:130px">
                        </td>
 
                    </tr>
                </table>
            </fieldset>
        </form>
        <s:debug/>
    </div>
</div>