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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<%@ 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">
$(function(){
    
});
</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%;">
                <input name="id" type="hidden" value="${wcpBean.id}"/>
                    <tr>
                        <th>轮保计划编号</th>
                        <td><span>${wcpBean.planNo }</span></td>
                        <th>轮保计划名称</th>
                        <td><span>${wcpBean.planName }</span></td>
                    </tr>
                    <tr>
                        <th>计划开始日期</th>
                        <td>
                            <span>${wcpBean.scheduleDate }</span>
                        </td>
                        <th>计划结束日期</th>
                        <td>
                            <span>${wcpBean.scheduleEndDate }</span>
                        </td>
                    </tr>
                    <tr>
                        <th>设备名称</th>
                        <td>
                            <span>${wcpBean.eqmName }</span>
                        </td>
                        <th>轮保类别</th>
                        <td>
                            <c:if test="${wcpBean.maintenanceType=='10' }"><span>轮保</span></c:if>
                            <c:if test="${wcpBean.maintenanceType=='20' }"><span>润滑</span></c:if>
                            <c:if test="${wcpBean.maintenanceType=='30' }"><span>停产检修</span></c:if>
                            <c:if test="${wcpBean.maintenanceType=='40' }"><span>其他</span></c:if>
                        </td>
                    </tr>
                    <tr>
                        <th>轮保部件</th>
                        <td><span>${wcpBean.wheelParts }</span></td>
                        <th>责任人</th>
                        <td><span>${wcpBean.dutyPeopleName }</span></td>
                    </tr>
                    <tr>
                        <th>维护内容</th>
                        <td colspan="3"><span>${wcpBean.maintenanceContent }</span></td>
                    </tr>
                    <tr>
                        <th>轮保周期</th>
                        <td>
                            <span>${wcpBean.period }</span>
                        </td>
                        <th>提醒周期</th>
                        <td>
                            <span>${wcpBean.remindCycle }</span>
                        </td>
                    </tr>
                    <tr>
                        <th>通过意见</th>
                        <td colspan="3">
                            <textarea style="width:460px;height:60px;resize:none" name="attr1">${wcpBean.attr1 }</textarea>
                        </td>
                    </tr>
                    <tr>
                        <th>驳回理由</th>
                        <td colspan="3">
                            <textarea style="width:460px;height:60px;resize:none" name="attr2">${wcpBean.attr2 }</textarea>
                        </td>
                    </tr>
                </table>
            </fieldset>
        </form>
    </div>
</div>