123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>日常事务管理</title>
- <meta name="decorator" content="default"/>
- </head>
- <body>
- <div class="single-form">
- <div class="container view-form">
- <form:form id="inputForm" modelAttribute="workDailyRoutine" action="${ctx}/workdailyroutine/workDailyRoutine/save" method="post" class="form-horizontal">
- <form:hidden path="id"/>
- <div class="form-group layui-row first">
- <div class="form-group-label"><h2>基本信息</h2></div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label"><span class="require-item">*</span>事务名称:</label>
- <div class="layui-input-block">
- <form:input path="name" htmlEscape="false" readonly="true" class="form-control layui-input required"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label"><span class="require-item">*</span>事务来源:</label>
- <div class="layui-input-block">
- <form:input path="source" htmlEscape="false" readonly="true" class="form-control layui-input required"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label">创建人:</label>
- <div class="layui-input-block">
- <form:input path="createBy.name" htmlEscape="false" readonly="true" class="form-control layui-input required"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label">所属部门:</label>
- <div class="layui-input-block">
- <input type="text" name="office.name" readonly="readonly" class="form-control layui-input" value="${workDailyRoutine.office.topCompany}"/>
- <input type="hidden" name="office.id" readonly="readonly" class="form-control layui-input" value="${workDailyRoutine.office.id}"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label">创建时间:</label>
- <div class="layui-input-block">
- <input type="text" id="createDate" htmlEscape="false" value="<fmt:formatDate value="${workDailyRoutine.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/>" readonly="true" class="form-control layui-input required"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label">事务状态:</label>
- <div class="layui-input-block">
- <form:input path="status" htmlEscape="false" readonly="true" class="form-control layui-input required"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm12 with-textarea">
- <label class="layui-form-label">具体要求:</label>
- <div class="layui-input-block">
- <form:textarea path="remarks" htmlEscape="false" readonly="true" rows="3" class="form-control"/>
- </div>
- </div>
- </div>
- <div class="form-group layui-row lw12">
- <div class="form-group-label"><h2>执行人明细</h2></div>
- <table id="termsTable" class="table table-bordered table-condensed details">
- <thead>
- <tr>
- <th>姓名</th>
- <th>部门</th>
- <th>完成状态</th>
- <th>完成日期</th>
- <th>完成情况说明</th>
- </tr>
- </thead>
- <tbody id="termTableList">
- <c:forEach items="${workDailyRoutine.detailList}" var="routineDetail" varStatus="idx">
- <tr>
- <td style="text-align:center;">
- ${routineDetail.operator.name}
- </td>
- <td style="text-align:center;">
- ${routineDetail.office.name}
- </td>
- <td style="text-align:center;">
- ${routineDetail.status}
- </td>
- <td style="text-align:center;">
- <fmt:formatDate value="${routineDetail.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
- </td>
- <td style="text-align:center;" title="${routineDetail.remarks}">
- ${routineDetail.remarks}
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- <div class="form-group layui-row">
- <div class="form-group-label"><h2>附件信息</h2></div>
- <div class="layui-item layui-col-xs12" style="padding:0 16px;">
- <table id="listAttachment" class="table table-bordered table-condensed no-bottom-margin details">
- <thead>
- <tr>
- <%-- <th>序号</th>--%>
- <th>文件预览</th>
- <th>上传人</th>
- <th>上传时间</th>
- <th width="150px">操作</th>
- </tr>
- </thead>
- <tbody id="file_attachment">
- <c:forEach items="${workDailyRoutine.workAttachments}" var = "workClientAttachment" varStatus="status">
- <tr>
- <%-- <td>${status.index + 1}</td>--%>
- <c:choose>
- <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpg')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'png')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'gif')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'bmp')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpeg')}">
- <td><img src="${workClientAttachment.url}" width="50" height="50" onclick="openDialogView('预览','${ctx}/sys/picturepreview/picturePreview?url=${workClientAttachment.url}','90%','90%')" alt="${workClientAttachment.attachmentName}"></td>
- </c:when>
- <c:otherwise>
- <c:choose>
- <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'pdf')}">
- <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%','1')">${workClientAttachment.attachmentName}</a></td>
- </c:when>
- <c:otherwise>
- <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%')">${workClientAttachment.attachmentName}</a></td>
- </c:otherwise>
- </c:choose>
- </c:otherwise>
- </c:choose>
- <td>${workClientAttachment.createBy.name}</td>
- <td><fmt:formatDate value="${workClientAttachment.createDate}" type="both"/></td>
- <td class="op-td">
- <div class="op-btn-box" >
- <a href="javascript:location.href='${ctx}/workfullmanage/workFullManage/downLoadAttach?file='+encodeURIComponent(encodeURIComponent('${workClientAttachment.url}'));" class="op-btn op-btn-download"><i class="fa fa-download"></i> 下载</a>
- </div>
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </div>
- </form:form>
- </div>
- </div>
- </body>
- </html>
|