1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <div class="title">
- <h2>成绩查询</h2>
- </div>
- <div class="content" style="top: 0px;" cg-busy="{promise:myPromise,message:'正在处理,请稍后...'}" >
- <div class="alert alert-info" ng-if="luqu.niluqu_major">
- 提示: <span style="color:red; font-weight:bold;">1. 请于公示结束后,1月21日9:00-1月26日24:00,确认录取专业,查阅后续安排</span>
- <!--
- <br/>1. 如果对成绩有异议,请于2024年1月14日24时之前在 <a ui-sref='scoreFuhe'>成绩复核申请</a> 页面按要求提交申请。</span>
- <br/>2. 拟录考生请查阅各学院阅读书目及要求:<a href="https://pan.baidu.com/s/1r-E9xOc_KR2YdxwW2hN0fQ?pwd=k7as" target="_blank">https://pan.baidu.com/s/1r-E9xOc_KR2YdxwW2hN0fQ?pwd=k7as 提取码: k7as</a>
- -->
- <br/><span style=" margin-left:46px;">2. 各专业研读书目请于1月21日后在系统查询下载</span>
- </div>
- <div class="row">
- <div class="col-md-offset-2 col-md-8 col-xs-12">
- <table class="table table-bordered" >
- <tr ng-if="luqu.face_total">
- <th class="text-right" width="40%">面试总分</th>
- <td width="60%">{{luqu.face_total}}</td>
- </tr>
- <tr ng-if="luqu.write_cn">
- <th class="text-right" width="40%">中文笔试</th>
- <td>{{luqu.write_cn}}</td>
- </tr>
- <tr ng-if="luqu.write_en">
- <th class="text-right">英语笔试</th>
- <td>{{luqu.write_en}}</td>
- </tr>
- <tr ng-if="luqu.total_score">
- <th class="text-right">总分</th>
- <td>{{luqu.total_score}}</td>
- </tr>
- <tr ng-if="luqu.niluqu_major">
- <th class="text-right" width="40%">
- <span ng-if="luqu.niluqu_major">拟录专业</span>
- <span ng-if="!luqu.niluqu_major">结果</span>
- </th>
- <td width="60%">
- <span style="font-weight:bold;color:green;font-size:120%" ng-if="luqu.niluqu_major">{{luqu.niluqu_major}}</span>
- <span style="font-weight:bold;color:red;font-size:120%" ng-if="!luqu.niluqu_major">未录取</span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
|