You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.9 KiB
49 lines
1.9 KiB
5 years ago
|
<%--
|
||
|
Created by IntelliJ IDEA.
|
||
|
User: pan
|
||
|
Date: 2020/6/10 0010
|
||
|
Time: 17:12
|
||
|
To change this template use File | Settings | File Templates.
|
||
|
--%>
|
||
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||
|
|
||
|
<script>
|
||
|
function refuse(id) {
|
||
|
$('#refuseDialog input[name=id]').val(id)
|
||
|
$('#refuseDialog form').removeAttr("style").attr('action','${pageContext.request.contextPath}/admin/apply/pass.do')
|
||
|
}
|
||
|
</script>
|
||
|
<div class="modal fade" id="refuseDialog" tabindex="-1" role="dialog" aria-labelledby="refuseDialogTitle" aria-hidden="true">
|
||
|
<div class="modal-dialog " role="document">
|
||
|
<div class="modal-content">
|
||
|
<form method="post">
|
||
|
<input type="hidden" name="id"/>
|
||
|
<input type="hidden" name="statex" value="${param.statex}"/>
|
||
|
<input type="hidden" name="action" value="${param.action}"/>
|
||
|
|
||
|
<div class="modal-header">
|
||
|
<h5 class="modal-title" id="refuseDialogTitle">不通过</h5>
|
||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
|
<span aria-hidden="true">×</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
<div class="modal-body">
|
||
|
|
||
|
|
||
|
<div class="input-group">
|
||
|
<div class="input-group-prepend">
|
||
|
<span class="input-group-text">理由</span>
|
||
|
</div>
|
||
|
<textarea class="form-control" name="content" aria-label="With textarea"></textarea>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<div class="modal-footer">
|
||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
|
||
|
<button type="submit" class="btn btn-primary">提交</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|