123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <div class="content">
- <form novalidate class='form-horizontal std-form' name='form'>
- <table class="table table-bordered">
- <tr>
- <td colspan="4" class="text-center"><span style="font-size:125%;font-weight:bold;">初审结果复核申请表</span></td>
- </tr>
- <tr>
- <th class="col-md-3"><b>考生姓名</b></th><td class="col-md-3">{{stdData.name}} <button class="btn-primary" ng-click="showStdOverview(fuhe.user_id)">查看报考信息</button></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">{{fuhe.mobile}}</td>
- </tr>
- <tr>
- <th><b>考生身份证正面</b></th>
- <td colspan="3">
- <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">
- <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:'medium'}}
- </td>
- </tr>
- <tr>
- <th><b>处理结果</b></th>
- <td colspan="3">
- <input type="text" class="form-control" ng-model="fuhe.fuhe_reply" ng-if="!fuhe.reply_time"></input>
- <span ng-if="fuhe.reply_time">{{fuhe.fuhe_reply}}</span>
- </td>
- </tr>
- <tr ng-if="fuhe.reply_time">
- <th><b>处理时间</b></th>
- <td colspan="3">
- {{fuhe.reply_time | date:'medium'}}
- </td>
- </tr>
- </table>
- <div class="form-group text-center" ng-if="!fuhe.reply_time">
- <button class="btn btn-primary" ng-click='submitForm()'>提交</button>
- <button class="btn btn-info" ng-click='showLast()'>上一个</button>
- <button class="btn btn-info" ng-click='showNext()'>下一个</button>
- </div>
- </form>
- </div>
|