admin_chushenFuhe_detail.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <div class="content">
  2. <form novalidate class='form-horizontal std-form' name='form'>
  3. <table class="table table-bordered">
  4. <tr>
  5. <td colspan="4" class="text-center"><span style="font-size:125%;font-weight:bold;">初审结果复核申请表</span></td>
  6. </tr>
  7. <tr>
  8. <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>
  9. <th class="col-md-3"><b>生源地及中学</b></th>
  10. <td class="col-md-3">{{stdData.province_name}} {{stdData.graduate_school_name}}
  11. <span ng-if="stdData.current_school_name">{{stdData.current_school_name}}</span>
  12. </td>
  13. </tr>
  14. <tr>
  15. <th><b>高考报名号</b></th><td colspan="3">{{stdData.exam_id}}</td>
  16. </tr>
  17. <tr>
  18. <th><b>考生身份证号</b></th><td colspan="3">{{stdData.cert_id}}</td>
  19. </tr>
  20. <tr>
  21. <th><b>考生联系方式</b></th><td colspan="3">{{fuhe.mobile}}</td>
  22. </tr>
  23. <tr>
  24. <th><b>考生身份证正面</b></th>
  25. <td colspan="3">
  26. <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)">
  27. </td>
  28. </tr>
  29. <tr>
  30. <th><b>考生身份证反面</b></th>
  31. <td colspan="3">
  32. <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)">
  33. </td>
  34. </tr>
  35. <tr ng-if="fuhe.create_time">
  36. <th><b>申请时间</b></th>
  37. <td colspan="3">{{fuhe.create_time | date:'medium'}}
  38. </td>
  39. </tr>
  40. <tr>
  41. <th><b>处理结果</b></th>
  42. <td colspan="3">
  43. <input type="text" class="form-control" ng-model="fuhe.fuhe_reply" ng-if="!fuhe.reply_time"></input>
  44. <span ng-if="fuhe.reply_time">{{fuhe.fuhe_reply}}</span>
  45. </td>
  46. </tr>
  47. <tr ng-if="fuhe.reply_time">
  48. <th><b>处理时间</b></th>
  49. <td colspan="3">
  50. {{fuhe.reply_time | date:'medium'}}
  51. </td>
  52. </tr>
  53. </table>
  54. <div class="form-group text-center" ng-if="!fuhe.reply_time">
  55. <button class="btn btn-primary" ng-click='submitForm()'>提交</button>
  56. <button class="btn btn-info" ng-click='showLast()'>上一个</button>
  57. <button class="btn btn-info" ng-click='showNext()'>下一个</button>
  58. </div>
  59. </form>
  60. </div>