std_face_score_fuhe.html 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <div class="title">
  2. <h2>能力测试成绩复核申请表</h2>
  3. </div>
  4. <div class="content" cg-busy="{promise:myPromise,message:'正在处理,请稍后...'}">
  5. <div ng-if="!score">
  6. 无成绩信息!
  7. </div>
  8. <div class="tabcnt">
  9. <div class="alert alert-danger" role="alert" ng-if="score">
  10. <b>注意:</b>考生如对成绩有疑义,可在2020年7月23日-2020年7月25日提交成绩复核申请,逾期不再受理。<br/>
  11. </div>
  12. <form novalidate class='form-horizontal std-form' name='form' ng-if="score">
  13. <table class="table table-bordered">
  14. <tr ng-if="fuhe.fuhe_reply">
  15. <th class="col-md-3"><b>复核结果</b></th>
  16. <!--
  17. <td colspan="3"><button class="btn btn-info" ng-click="viewFuheResult()">查看复核结果</button></td>
  18. -->
  19. <td colspan="3">{{fuhe.fuhe_reply}}</td>
  20. </tr>
  21. <tr ng-if="!fuhe.fuhe_reply && fuhe.id">
  22. <th class="col-md-3"><b>复核结果</b></th><td colspan="3">暂无复核结果</td>
  23. </tr>
  24. <tr>
  25. <th class="col-md-3"><b>考生姓名</b></th><td class="col-md-3">{{stdData.name}}</td>
  26. <th class="col-md-3"><b>生源地及中学</b></th>
  27. <td class="col-md-3">{{stdData.province_name}} {{stdData.graduate_school_name}}
  28. <span ng-if="stdData.current_school_name">{{stdData.current_school_name}}</span>
  29. </td>
  30. </tr>
  31. <tr>
  32. <th><b>高考报名号</b></th><td colspan="3">{{stdData.exam_id}}</td>
  33. </tr>
  34. <tr>
  35. <th><b>考生身份证号</b></th><td colspan="3">{{stdData.cert_id}}</td>
  36. </tr>
  37. <tr>
  38. <th><b>考生联系方式</b></th><td colspan="3">{{stdData.mobile}}</td>
  39. </tr>
  40. <tr>
  41. <th><b>复查科目</b></th>
  42. <td>
  43. <input type="checkbox" ng-model="fuhe.zhongwen"> 中文面试
  44. </td>
  45. <td>
  46. <input type="checkbox" ng-model="fuhe.waiyu"> 外语口试
  47. </td>
  48. <td ng-if="score.fuyu_apply == '1'">
  49. <input type="checkbox" ng-model="fuhe.fuyu"> 复语测试
  50. </td>
  51. <td ng-if="score.fuyu_apply == '2'">
  52. </td>
  53. </tr>
  54. <tr>
  55. <th><b>考生身份证正面</b></th>
  56. <td colspan="3">
  57. <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>
  58. <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)">
  59. </td>
  60. </tr>
  61. <tr>
  62. <th><b>考生身份证反面</b></th>
  63. <td colspan="3">
  64. <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>
  65. <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)">
  66. </td>
  67. </tr>
  68. <tr ng-if="fuhe.create_time">
  69. <th><b>申请时间</b></th>
  70. <td colspan="3">{{fuhe.create_time | date:'yyyy-MM-dd HH:mm:ss'}}
  71. </td>
  72. </tr>
  73. </table>
  74. <div class="form-group text-center" ng-if="!fuhe.create_time">
  75. <button class="btn btn-primary" ng-click='submitForm(form.$valid)'>提交</button>
  76. </div>
  77. </form>
  78. </div>
  79. </div>