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
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
 
<div class="easyui-layout" data-options="fit:true,border:false">
    <div data-options="region:'center',border:false" title="" style="overflow: auto;padding:5px">
    <fieldset style="border:2px solid #699AB8;width:97%;padding:5px;">
        <fieldset style="border:2px dashed #699AB8;width:95%;height:225px;">
            <table class="table" style="width: 100%;">
                <caption><span style="font-size:24px;">${msgInfo.title }</span></caption>
                <tr>
                    <td colspan="4" >
                        <div style="min-height: 100px;height:110px;">${msgInfo.content }</div>
                    </td>
                </tr>
                <tr>
                    <td colspan="3"style="width:75%;"></td>
                    <td style="text-align: left;padding-right:20px;">
                        发起人:${msgInfo.initiatorName }
                    </td>
                </tr>
                <tr>
                <td colspan="3"style="width:75%;"></td>
                    <td style="text-align: left;padding-right:20px;">
                        审核人:${msgInfo.approvalName }
                    </td>
                </tr>
                <tr>
                <td colspan="3"style="width:75%;"></td>
                    <td style="text-align: left;padding-right:20px;">
                        签发人:${msgInfo.issuerName }
                    </td>
                </tr>
                <tr>
                    <td colspan="3"style="width:75%;"></td>
                    <td style="text-align: left;padding-right:20px;">
                        ${msgInfo.time }
                    </td>
                </tr>
            </table>
        </fieldset>
        <fieldset style="border:2px dashed #699AB8;width:95%;height:150px;">
            <legend>审批信息</legend>
            <table class="table" style="width: 100%;border:1px solid #A8BADA;">
                <tr>
                    <th width=100 style="border:1px solid #A8BADA;">审批/签发人</th>
                    <th width=300 style="border:1px solid #A8BADA;">审批/签发意见</th>
                    <th width=150 style="border:1px solid #A8BADA;">审批/签发时间</th>
                    <th width=100 style="border:1px solid #A8BADA;">操作</th>
                </tr>
                <c:forEach var="item" items="${msgInfos}">
                    <tr>
                        <td  width=100 style="border:1px solid #A8BADA;text-align: center;">
                            <c:if test="${item.approvalName != ''}">${item.approvalName }</c:if>
                            <c:if test="${item.issuerName != ''}">${item.issuerName }</c:if>
                        </td>
                        <td width=300 style="border:1px solid #A8BADA;">${item.approveContent }</td>
                        <td width=150 style="border:1px solid #A8BADA;text-align: center;">${item.approveTime }</td>
                        <td width=100 style="border:1px solid #A8BADA;text-align: center;">
                            <c:if test="${item.flag == '1'}">【签发】驳回</c:if>
                            <c:if test="${item.flag == '0'}">【审核】驳回</c:if>
                            <c:if test="${item.flag == '2'}">【审核】通过</c:if>
                            <c:if test="${item.flag == '3'}">【签发】通过</c:if>
                        </td>
                    </tr>
                </c:forEach>
                <c:if test=""></c:if>
            </table>
        </fieldset>
        </fieldset>
    </div>
</div>