std_score_modify.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <div class="title">
  2. <h2>成绩复核申请表</h2>
  3. </div>
  4. <div class="content" cg-busy="{promise:myPromise,message:'正在处理,请稍后...'}">
  5. <div class="tabcnt">
  6. <div class="alert alert-danger" role="alert">
  7. <b>注意:</b>复核申请截止时间2024年1月14日24时<br/>
  8. 复核申请步骤:
  9. 1. 下载申请表
  10. 2. 打印申请表,填写完成后盖学校印章
  11. 3. 将盖章后的申请表拍照发送至邮箱:bwzsb@bfsu.edu.cn
  12. 4. 在此页面填写后提交
  13. </div>
  14. <div style="padding:10px 20px;">
  15. <a class="btn btn-info" style="color:#fff;" ng-href="./北京外国语大学保送生招生考试成绩复查申请登记表.pdf" target="_blank">
  16. <span class="glyphicon glyphicon-download"></span> 下载申请表</a>
  17. </div>
  18. <form novalidate class='form-horizontal std-form' name='form'>
  19. <table class="table table-bordered">
  20. <!--
  21. <tr>
  22. <th class="col-md-3"><b>申请人</b></th><td class="col-md-3">{{stdData.name}}</td>
  23. <th class="col-md-3"><b>联系电话</b></th><td class="col-md-3">{{stdData.mobile}}</td>
  24. </tr>
  25. <tr>
  26. <th><b>考生身份证号</b></th><td colspan="3">{{stdData.cert_id}}</td>
  27. <th class="col-md-3"><b>传真号码<font style="color:red;">*</font></b></th>
  28. <td class="col-md-3">
  29. <input ng-if="!apply.create_time" type="text" size="30" ng-model="apply.fax" required/>
  30. <span ng-if="apply.create_time">{{apply.fax}}</span>
  31. </td>
  32. </tr>
  33. -->
  34. <tr>
  35. <th width="30%"><b>复查内容<font style="color:red;">*</font></b></th>
  36. <td colspan="3">
  37. <textarea ng-if="!apply.create_time" rows="2" cols="200" ng-model="apply.content" style="margin: 0px; width: 90%; "></textarea>
  38. <p ng-if="apply.create_time">{{apply.content}}</p>
  39. </td>
  40. </tr>
  41. <tr>
  42. <th><b>考生身份证照片(正面)<font style="color:red;">*</font></b></th>
  43. <td colspan="3">
  44. <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>
  45. <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)">
  46. </td>
  47. </tr>
  48. <tr>
  49. <th><b>考生身份证照片(反面)<font style="color:red;">*</font></b></th>
  50. <td colspan="3">
  51. <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>
  52. <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)">
  53. </td>
  54. </tr>
  55. <tr ng-if="apply.create_time">
  56. <th>申请时间</th>
  57. <td colspan="3">{{apply.create_time | date:'yyyy-MM-dd HH:mm:ss'}}</td>
  58. </tr>
  59. <tr ng-if="apply.create_time">
  60. <th>复查结论</th>
  61. <td colspan="3">{{apply.status}}</td>
  62. </tr>
  63. </table>
  64. <div class="form-group text-center" ng-if="!apply.create_time">
  65. <button class="btn btn-primary" ng-click='submitForm(form.$valid)'>提交</button>
  66. </div>
  67. </form>
  68. </div>
  69. </div>