12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <div class="title">
- <h2>能力测试成绩复核申请表</h2>
- </div>
-
- <div class="content" cg-busy="{promise:myPromise,message:'正在处理,请稍后...'}">
- <div ng-if="!score">
- 无成绩信息!
- </div>
- <div class="tabcnt">
- <div class="alert alert-danger" role="alert" ng-if="score">
- <b>注意:</b>考生如对成绩有疑义,可在2020年7月23日-2020年7月25日提交成绩复核申请,逾期不再受理。<br/>
- </div>
- <form novalidate class='form-horizontal std-form' name='form' ng-if="score">
- <table class="table table-bordered">
- <tr ng-if="fuhe.fuhe_reply">
- <th class="col-md-3"><b>复核结果</b></th>
- <!--
- <td colspan="3"><button class="btn btn-info" ng-click="viewFuheResult()">查看复核结果</button></td>
- -->
- <td colspan="3">{{fuhe.fuhe_reply}}</td>
- </tr>
- <tr ng-if="!fuhe.fuhe_reply && fuhe.id">
- <th class="col-md-3"><b>复核结果</b></th><td colspan="3">暂无复核结果</td>
- </tr>
- <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.province_name}} {{stdData.graduate_school_name}}
- <span ng-if="stdData.current_school_name">{{stdData.current_school_name}}</span>
- </td>
- </tr>
- <tr>
- <th><b>高考报名号</b></th><td colspan="3">{{stdData.exam_id}}</td>
- </tr>
- <tr>
- <th><b>考生身份证号</b></th><td colspan="3">{{stdData.cert_id}}</td>
- </tr>
- <tr>
- <th><b>考生联系方式</b></th><td colspan="3">{{stdData.mobile}}</td>
- </tr>
- <tr>
- <th><b>复查科目</b></th>
- <td>
- <input type="checkbox" ng-model="fuhe.zhongwen"> 中文面试
- </td>
- <td>
- <input type="checkbox" ng-model="fuhe.waiyu"> 外语口试
- </td>
- <td ng-if="score.fuyu_apply == '1'">
- <input type="checkbox" ng-model="fuhe.fuyu"> 复语测试
- </td>
- <td ng-if="score.fuyu_apply == '2'">
- </td>
- </tr>
- <tr>
- <th><b>考生身份证正面</b></th>
- <td colspan="3">
- <div class="btn btn-primary" ngf-select="uploadPhoto($file, 'cert_photo_front')" ngf-pattern="'image/*'" ngf-accept="'image/*'" ngf-max-size="2MB" ng-if="!fuhe.create_time">上传图片 (需小于2M)</div>
- <img alt="" ng-src="{{host_url}}/{{fuhe.cert_photo_front}}" style="max-width:500px;" ng-show="fuhe.cert_photo_front" ng-click="viewFileByPath(fuhe.cert_photo_front)">
- </td>
- </tr>
- <tr>
- <th><b>考生身份证反面</b></th>
- <td colspan="3">
- <div class="btn btn-primary" ngf-select="uploadPhoto($file, 'cert_photo_back')" ngf-pattern="'image/*'" ngf-accept="'image/*'" ngf-max-size="2MB" ng-if="!fuhe.create_time">上传图片 (需小于2M)</div>
- <img alt="" ng-src="{{host_url}}/{{fuhe.cert_photo_back}}" style="max-width:500px;" ng-show="fuhe.cert_photo_back" ng-click="viewFileByPath(fuhe.cert_photo_back)">
- </td>
- </tr>
- <tr ng-if="fuhe.create_time">
- <th><b>申请时间</b></th>
- <td colspan="3">{{fuhe.create_time | date:'yyyy-MM-dd HH:mm:ss'}}
- </td>
- </tr>
- </table>
- <div class="form-group text-center" ng-if="!fuhe.create_time">
- <button class="btn btn-primary" ng-click='submitForm(form.$valid)'>提交</button>
- </div>
- </form>
- </div>
- </div>
|