|
@@ -0,0 +1,49 @@
|
|
|
|
+<!--审核报名-->
|
|
|
|
+<div id="OpAuditLayer">
|
|
|
|
+ <form id="J_interviewWrap">
|
|
|
|
+ <input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
|
|
+ <table border="0" cellspacing="0" cellpadding="0">
|
|
|
|
+ <tr style="padding: 10px 0;border-bottom: 1px dashed #ccc">
|
|
|
|
+ <td height="100" colspan="2" >
|
|
|
|
+ <strong style="color:#0066CC; font-size:14px;">审核说明及注意事项:</strong>
|
|
|
|
+ <p>1.审核通过务必选择该岗位需参加的考试流程;</p>
|
|
|
|
+ <p>2.若选择的考试流程对应招考场次未设置,则自动跳过;</p>
|
|
|
|
+ <p>3.审核结果将发送短信通知,请慎重审核。</p>
|
|
|
|
+ <input name="ids" type="hidden" value="{{$ids}}"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td colspan="2" height="10"></td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr >
|
|
|
|
+ <td width="70" height="25">审核状态:</td>
|
|
|
|
+ <td>
|
|
|
|
+ <label> <input type="radio" name="audit" checked="checked" value="3"/> 通过 </label>
|
|
|
|
+ <label> <input type="radio" name="audit" value="2"/> 不通过 </label>
|
|
|
|
+ <label> <input type="radio" name="audit" value="1"/> 撤回至未审核 </label>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td width="70" height="25">考试流程:</td>
|
|
|
|
+ <td>
|
|
|
|
+ <label> <input type="checkbox" name="exam_flow_path[]" value="pen"/> 笔试 </label>
|
|
|
|
+ <label> <input type="checkbox" name="exam_flow_path[]" value="computer"/> 上机 </label>
|
|
|
|
+ <label> <input type="checkbox" name="exam_flow_path[]" value="face"/> 面试 </label>
|
|
|
|
+ <label> <input type="checkbox" name="exam_flow_path[]" value="reexamine"/> 复试 </label>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr id="reason">
|
|
|
|
+ <td width="70" height="25">备注:</td>
|
|
|
|
+ <td>
|
|
|
|
+ <textarea maxlength="300" name="reason" cols="50" style="font-size:12px"></textarea>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ </table>
|
|
|
|
+
|
|
|
|
+ </form>
|
|
|
|
+</div>
|
|
|
|
+<style>
|
|
|
|
+ p{
|
|
|
|
+ text-indent: 20px;
|
|
|
|
+ }
|
|
|
|
+</style>
|