123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <div class="title">
- <h2>成绩复核申请表</h2>
- </div>
- <div class="content" cg-busy="{promise:myPromise,message:'正在处理,请稍后...'}">
-
-
- <div class="tabcnt">
- <div class="alert alert-danger" role="alert">
- <b>注意:</b>复核申请截止时间2024年1月14日24时<br/>
- 复核申请步骤:
- 1. 下载申请表
- 2. 打印申请表,填写完成后盖学校印章
- 3. 将盖章后的申请表拍照发送至邮箱:bwzsb@bfsu.edu.cn
- 4. 在此页面填写后提交
- </div>
-
- <div style="padding:10px 20px;">
- <a class="btn btn-info" style="color:#fff;" ng-href="./北京外国语大学保送生招生考试成绩复查申请登记表.pdf" target="_blank">
- <span class="glyphicon glyphicon-download"></span> 下载申请表</a>
- </div>
-
- <form novalidate class='form-horizontal std-form' name='form'>
- <table class="table table-bordered">
- <!--
- <tr>
- <th class="col-md-3"><b>申请人</b></th><td class="col-md-3">{{stdData.name}}</td>
- <th class="col-md-3"><b>联系电话</b></th><td class="col-md-3">{{stdData.mobile}}</td>
- </tr>
- <tr>
- <th><b>考生身份证号</b></th><td colspan="3">{{stdData.cert_id}}</td>
- <th class="col-md-3"><b>传真号码<font style="color:red;">*</font></b></th>
- <td class="col-md-3">
- <input ng-if="!apply.create_time" type="text" size="30" ng-model="apply.fax" required/>
- <span ng-if="apply.create_time">{{apply.fax}}</span>
- </td>
- </tr>
- -->
- <tr>
- <th width="30%"><b>复查内容<font style="color:red;">*</font></b></th>
- <td colspan="3">
- <textarea ng-if="!apply.create_time" rows="2" cols="200" ng-model="apply.content" style="margin: 0px; width: 90%; "></textarea>
- <p ng-if="apply.create_time">{{apply.content}}</p>
- </td>
- </tr>
- <tr>
- <th><b>考生身份证照片(正面)<font style="color:red;">*</font></b></th>
- <td colspan="3">
- <div class="btn btn-primary" ng-if="!apply.create_time" ngf-select="uploadPhoto($file, 'cert_photo_front')" ngf-pattern="'image/*'" ngf-accept="'image/*'" ngf-max-size="2MB">上传图片 (需小于2M)</div>
- <img alt="" ng-src="{{host_url}}/{{apply.cert_photo_front}}" style="max-height:100px;" ng-show="apply.cert_photo_front" ng-click="viewFileByPath(apply.cert_photo_front)">
- </td>
- </tr>
- <tr>
- <th><b>考生身份证照片(反面)<font style="color:red;">*</font></b></th>
- <td colspan="3">
- <div class="btn btn-primary" ng-if="!apply.create_time" ngf-select="uploadPhoto($file, 'cert_photo_back')" ngf-pattern="'image/*'" ngf-accept="'image/*'" ngf-max-size="2MB">上传图片 (需小于2M)</div>
- <img alt="" ng-src="{{host_url}}/{{apply.cert_photo_back}}" style="max-height:100px;" ng-show="apply.cert_photo_back" ng-click="viewFileByPath(apply.cert_photo_back)">
- </td>
- </tr>
- <tr ng-if="apply.create_time">
- <th>申请时间</th>
- <td colspan="3">{{apply.create_time | date:'yyyy-MM-dd HH:mm:ss'}}</td>
- </tr>
- <tr ng-if="apply.create_time">
- <th>复查结论</th>
- <td colspan="3">{{apply.status}}</td>
- </tr>
- </table>
- <div class="form-group text-center" ng-if="!apply.create_time">
- <button class="btn btn-primary" ng-click='submitForm(form.$valid)'>提交</button>
- </div>
- </form>
- </div>
- </div>
|