admin_std_overview.html 5.3 KB

1
  1. <style> th{ font-weight:bold; } h3{ font-size: 20px; margin-top: 0; margin-bottom: 0; } .page-header{ padding-top: 9px; padding-left: 2px; background: lightblue; } </style> <div class="content" cg-busy="{promise:myPromise,message:'正在处理,请稍后...'}"> <div class="page-header" ng-if="bkType == 'bss'"> <h3>报考专业</h3> </div> <table class="table table-strip" ng-if="bkType == 'bss'"> <tr> <th>A段专业:</th><td colspan="3">{{major.major_a}}</td> </tr> <tr> <th>B段专业一:</th><td>{{major.major_b_1}}</td> <th>B段专业二:</th><td>{{major.major_b_2}}</td> </tr> <tr> <th>B段专业三:</th><td>{{major.major_b_3}}</td> <th>B段专业四:</th><td>{{major.major_b_4}}</td> </tr> <tr> <th>B段专业五:</th><td>{{major.major_b_5}}</td> <th>B段专业六:</th><td>{{major.major_b_6}}</td> </tr> <tr> <th>B段专业七:</th><td>{{major.major_b_7}}</td> <th>B段专业八:</th><td>{{major.major_b_8}}</td> </tr> <tr> <th>B段专业九:</th><td>{{major.major_b_9}}</td> <th>B段专业十:</th><td>{{major.major_b_10}}</td> </tr> <tr> <th>B段专业十一:</th><td>{{major.major_b_11}}</td> <th>B段专业十二:</th><td>{{major.major_b_12}}</td> </tr> <tr> <th>B段专业十三:</th><td>{{major.major_b_13}}</td> <th>B段专业十四:</th><td>{{major.major_b_14}}</td> </tr> <tr> <th>B段专业十五:</th><td>{{major.major_b_15}}</td> <th></th><td></td> </tr> <tr> <th>是否服从调剂:</th><td colspan="3">{{paramMap['yesno_' + major.adjust]}}</td> </tr> </table> <div class="page-header"> <h3 class="overview">考生基本信息 </h3> </div> <div class="avatar"> <div class="box" id="std_avatar" ng-show="!stdData.head_photo"></div> <div class="box" id="std_avatar" ng-show="stdData.head_photo"> <img ng-src="{{host_url}}/{{stdData.head_photo}}" width="200px;"> </div> </div> <table class="table table-strip"> <tr> <th>姓名:</th><td>{{stdData.name}}</td> <th>性别:</th><td>{{paramMap['gender_' + stdData.sex]}}</td> <th>出生日期:</th><td>{{stdData.birthday}}</td> </tr> <tr> <th>民族:</th><td>{{paramMap['minzu_' + stdData.minzu]}}</td> <th>高考报名所在地:</th><td colspan="3">{{provinces[stdData.province]}} - {{areas[stdData.area]}} - {{cities[stdData.city]}}</td> </tr> <tr> <th>身份证号:</th><td>{{stdData.cert_id}}</td> <th>考生号:</th><td>{{stdData.exam_id}}</td> <th>政治面貌:</th><td>{{paramMap['political_landscape_' + stdData.political_landscape]}}</td> </tr> <tr> <th>考生类型:</th><td>{{paramMap['studentType_' + stdData.student_type]}}</td> <th>中学阶段所学外语语种:</th><td>{{paramMap['highSchoolLanguage_' + stdData.foreign_lang_type]}}</td> <th>科类:</th><td>{{paramMap['wenli_' + stdData.wenli_type]}}</td> </tr> </table> <div class="page-header"> <h3 class="overview">考生联系信息 </h3> </div> <table class="table table-strip"> <tr> <th>家庭居住地址:</th><td colspan="3">{{provinces[stdData.home_province]}} - {{areas[stdData.home_area]}} - {{cities[stdData.home_city]}}</td> </tr> <tr> <th>详细地址:</th><td>{{stdData.home_address}}</td> <th>邮政编码:</th><td>{{stdData.home_postcode}}</td> </tr> <tr> <th>地区类型:</th><td>{{paramMap['hujiType_' + stdData.huji_type]}}</td> </tr> <tr> <th>个人手机号码:</th><td>{{stdData.mobile}}</td> </tr> <tr> <th>父亲手机号码:</th><td>{{stdData.father_mobile}}</td> <th>母亲手机号码:</th><td>{{stdData.mother_mobile}}</td> </tr> <tr> <th>电子邮件地址:</th><td>{{stdData.email}}</td> </tr> </table> <div class="page-header"> <h3 class="overview">主要经历 <a ui-sref="baseInfo.experience" class="align-right"> <span class="glyphicon glyphicon-edit text-warning">前往修改</span> </a> </h3> </div> <table class="table"> <thead> <tr> <th class="col-md-1">阶段</th> <th class="col-md-2">开始日期</th> <th class="col-md-2">结束日期</th> <th class="col-md-4">在何地何学校学习</th> <th class="col-md-2">证明人</th> </tr> </thead> <tbody> <tr ng-repeat="experience in experiences" ng-form="cellForm" class="form-group"> <td>{{experience.period_name}}</td> <td>{{experience.start_date}}</td> <td>{{experience.end_date}}</td> <td>{{experience.school}}</td> <td>{{experience.certifier}}</td> </tr> </tbody> </table> <div class="page-header"> <h3 class="overview">高中毕业学校 </h3> </div> <table class="table table-strip"> <tr> <th>毕业高中名称:</th><td colspan="3">{{schoolInfo.graduate_school_name}}</td> </tr> </table> <div class="page-header"> <h3 class="overview">基本信息确认与上传 </h3> </div> <table class="table score-table table-striped table-hover" ng-if="basic_info_confirm"> <tbody> <tr ng-repeat="file in basic_info_confirm.files" > <td ng-click="viewFile(file)">{{file.fileName}}</td> <td><button ng-click="viewFile(file)" class="btn btn-xs btn-info">查看</button></td> </tr> </tbody> </table> <div ng-if="!basic_info_confirm || !basic_info_confirm.files || basic_info_confirm.files.length < 1" class="text-danger"> 未上传 </div> </div>