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
<%@ 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">
        
</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>
                <input name="eqm_wcp_id" value="${paramsBean.eqm_wcp_id}" style="display: none"/>
                <input name="id" value="${paramsBean.id}" style="display: none"/>
                <input name="role_id" value="${paramsBean.role_id}" style="display: none"/>
                <input name="attr3" value="${paramsBean.attr3}" style="display: none"/>
                <table class="table" style="width: 100%;">
                    <tr>
                        <th>保养项目</th>
                        <td colspan="5">
                            <textarea readOnly="true"  name="content" style="width:100%; text-align:left;background-color: lime;" >${paramsBean.content}</textarea>
                        </td>
                    </tr>
                    <tr >
                        <th>保养明细</th>
                        <td colspan="5">
                            <textarea readOnly="true"  name="content_datail"  style="width:100%;text-align: left;background-color: lime;">${paramsBean.content_datail}</textarea>
                        </td>
                    </tr>
                    <tr>
                        <th>任务角色</th>
                        <td>
                            <input readOnly="true"  name="role_name" value="${paramsBean.role_name}" style="background-color: lime;"></input>
                        </td>
                        <th>完成人</th>
                        <td>
                            <input readOnly="true"  name="actual_user_name" value="${paramsBean.actual_user_name}" style="background-color: lime;"></input>
                        </td>
                        <th>完成情况</th>
                        <td>
                            <select name="status">
                                <option value="0" <c:if test="${paramsBean.status=='0'}">selected="selected"</c:if> >未完成</option>
                                <option value="1" <c:if test="${paramsBean.status=='1'}">selected="selected"</c:if> >完成</option>
                            </select>
                        </td>
                    </tr>
                    <tr>
                        <th>检查情况</th>
                        <td colspan="5">
                            <textarea name="des"  style="width:100%;text-align: left">${paramsBean.des}</textarea>
                        </td>
                    </tr>
                    <tr>
                        <th>保养效果</th>
                        <td colspan="5">
                            <textarea name="job_standard"  style="width:100%;text-align: left">${paramsBean.job_standard}</textarea>
                        </td>
                    </tr>
                </table>
            </fieldset>
        </form>
    </div>
</div>