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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
 
</script>
</head>
<body class="easyui-layout" data-options="fit : true,border : false">
<!-- 维修呼叫记录编辑 -->
<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="${callInfo.id}"/>
                            <input name="handleStartTime" type="text" class="easyui-my97" datefmt="yyyy-MM-dd HH:mm:ss" style="width:130px" value="${callInfo.stim}"/>
                        </td>
                        </tr>
                    <tr>
                        <th>结束时间</th>
                        <td>
                        <input name="handleEndTime" type="text" class="easyui-my97" datefmt="yyyy-MM-dd HH:mm:ss" style="width:130px" value="${callInfo.etim}"/>
                        </td>
                    </tr>
 
                </table>--%>
                <table class="table" style="width: 100%;">
                    <input name="id" type="hidden" value="${callInfo.id}"/>
                    <tr>
                        <th>请求人</th>
                        <td>
                            <input name="sumitter" class="easyui-validatebox" data-options="panelHeight:'auto',editable:true,width:173,disabled:true" value="${callInfo.sumitter}"/>
                        </td>
                        <th>维修工</th>
                        <td>
                            <input name="requestUserName" class="easyui-validatebox" data-options="panelHeight:'auto',width:173,disabled:true" value="${callInfo.requestUserName}"/>
                        </td>
                    </tr>
                    <tr>
                        <th>受理人</th>
                        <td>
                            <input name="repairer" class="easyui-validatebox" data-options="panelHeight:'auto',width:173,disabled:true" value="${callInfo.repairer}"/>
                        </td>
                        <th>受理时间</th>
                        <td>
                            <input name="handleStartTime" class="easyui-validatebox"  data-options="panelHeight:'auto',width:173,disabled:true" value="${callInfo.handleStartTime}"/>
                        </td>
                    </tr>
                    <tr>
                        <th>故障类型</th>
                        <td>
                            <select name="faultType"
                                    class="easyui-combobox"
                                    data-options="panelHeight:'auto',editable:false,width:173">
                                <%--1.劣化,2突发--%>
                                <option value="1" <c:if test="${'1' eq callInfo.faultType}">selected</c:if> >劣化</option>
                                <option value="2" <c:if test="${'2' eq callInfo.faultType}">selected</c:if> >突发</option>
                            </select>
                        </td>
                        <th>故障详细类型</th>
                        <td>
                            <select name="faultTypeDetail"
                                    class="easyui-combobox"
                                    data-options="panelHeight:'auto',editable:false,width:173">
                                <%--1.机械,2.电气,3.计量--%>
                                <option value="1" <c:if test="${'1' eq callInfo.faultTypeDetail}">selected</c:if> >机械</option>
                                <option value="2" <c:if test="${'2' eq callInfo.faultTypeDetail}">selected</c:if> >电气</option>
                                <option value="3" <c:if test="${'3' eq callInfo.faultTypeDetail}">selected</c:if> >计量</option>
                                <option value="4" <c:if test="${'4' eq callInfo.faultTypeDetail}">selected</c:if> >其他</option>
                            </select>
                        </td>
                    </tr>
                    <tr>
                        <th>原因类别</th>
                        <td>
                            <select name="reasonCategory"
                                    class="easyui-combobox"
                                    data-options="panelHeight:'auto',editable:false,width:173">
                                <%--1.功效,2震动,3 泄露,4破损,5,磨损,6变形,7油污,
                                8松动,9抖动,10掺漏,11积垢,12断裂,13温度,
                                14异响,15错位,16间隙--%>
                                <option value="1" <c:if test="${'1' eq callInfo.reasonCategory}">selected</c:if> >功效</option>
                                <option value="2" <c:if test="${'2' eq callInfo.reasonCategory}">selected</c:if> >震动</option>
                                <option value="3" <c:if test="${'3' eq callInfo.reasonCategory}">selected</c:if> >泄露</option>
                                <option value="4" <c:if test="${'4' eq callInfo.reasonCategory}">selected</c:if> >破损</option>
                                <option value="5" <c:if test="${'5' eq callInfo.reasonCategory}">selected</c:if> >磨损</option>
                                <option value="6" <c:if test="${'6' eq callInfo.reasonCategory}">selected</c:if> >变形</option>
                                <option value="7" <c:if test="${'7' eq callInfo.reasonCategory}">selected</c:if> >油污</option>
                                <option value="8" <c:if test="${'8' eq callInfo.reasonCategory}">selected</c:if> >松动</option>
                                <option value="9" <c:if test="${'9' eq callInfo.reasonCategory}">selected</c:if> >抖动</option>
                                <option value="10" <c:if test="${'10' eq callInfo.reasonCategory}">selected</c:if> >掺漏</option>
                                <option value="11" <c:if test="${'11' eq callInfo.reasonCategory}">selected</c:if> >积垢</option>
                                <option value="12" <c:if test="${'12' eq callInfo.reasonCategory}">selected</c:if> >断裂</option>
                                <option value="13" <c:if test="${'13' eq callInfo.reasonCategory}">selected</c:if> >温度</option>
                                <option value="14" <c:if test="${'14' eq callInfo.reasonCategory}">selected</c:if> >异响</option>
                                <option value="15" <c:if test="${'15' eq callInfo.reasonCategory}">selected</c:if> >错位</option>
                                <option value="16" <c:if test="${'16' eq callInfo.reasonCategory}">selected</c:if> >间隙</option>
                            </select>
                        </td>
                        <th>影响生产</th>
                        <td>
                            <select name="isFault"
                                    class="easyui-combobox"
                                    data-options="panelHeight:'auto',editable:false,width:173">
                                <option value="1" <c:if test="${'1' eq callInfo.isFault}">selected</c:if> >是</option>
                                <option value="0" <c:if test="${'0' eq callInfo.isFault}">selected</c:if> >否</option>
 
                            </select>
                        </td>
                    </tr>
                    <tr>
                        <th>停机时间(分钟)</th>
                        <td>
                            <input name="stopTime" type="text" class="easyui-numberbox" data-options="min:0,precision:2,prompt:'请输入停机时间'" value="${callInfo.stopTime}">
                        </td>
                        <th>部位</th>
                        <td>
                            <input  name="part" value="${callInfo.part}" placeholder="请输入部位" class="easyui-validatebox"/>
                        </td>
                    </tr>
                    <tr>
                        <th>故障描述</th>
                        <td colspan="3">
                            <textarea style="width:460px;height:60px;resize:none" name="description">${callInfo.description}</textarea>
                        </td>
                    </tr>
                    <tr>
                        <th>故障原因分析</th>
                        <td colspan="3">
                            <textarea style="width:460px;height:60px;resize:none" name="faultReason" placeholder="请输入内容" <%--value="${callInfo.faultReason}"--%>>${callInfo.faultReason}</textarea>
                        </td>
                    </tr>
                    <tr>
                        <th>处理措施</th>
                        <td colspan="3">
                            <textarea style="width:460px;height:60px;resize:none" name="handleStep" placeholder="请输入内容" <%--value="${callInfo.handleStep}"--%>>${callInfo.handleStep}</textarea>
                        </td>
                    </tr>
 
                    <tr>
                        <th>备注</th>
                        <td colspan="3">
                            <textarea style="width:460px;height:60px;resize:none" name="remark">${callInfo.remark}</textarea>
                        </td>
                    </tr>
                    <tr>
                        <th>评价</th>
                        <td colspan="3">
                            <label><input name="comment_" type="radio" value="1" <c:if test="${'1' eq callInfo.comment_}"> checked="checked" </c:if> <%--<#if (data.comment_?exists) && (data.comment_=='1') >  checked="checked" </#if>--%> />差</label>
                            <label><input name="comment_" type="radio" value="2" <c:if test="${'2' eq callInfo.comment_}"> checked="checked" </c:if> />一般 </label>
                            <label><input name="comment_" type="radio" value="3" <c:if test="${'3' eq callInfo.comment_}"> checked="checked" </c:if> />很好</label>
                        </td>
                        </td>
                    </tr>
                </table>
            </fieldset>
        </form>
    </div>
</div>
</body>
</html>`