123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <ion-view view-title="关于我们">
- <div class="bar bar-header">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback" ng-click="goback()"></button>
- <h1 class="bar_title">认证申请</h1>
- </div>
- <ion-content style="background-color:#f2f2f2;overflow-x:hidden;overflow-y:visible;" class="has-header">
- <a class="auditCard">
- <!--<nav>
- <span>认证申请</span>
- <span><em>申请时间</em>{{identity.updatetime}}</span>
- </nav>-->
- <!--身份证信息-->
- <div>
- <label>
- <span>真实姓名:<em ng-bind="authinfo.name"></em></span>
- <span>证件类型:<em ng-bind="authinfo.idtypename"></em></span>
- <span>证件号码:<em ng-bind="authinfo.cardno"></em></span>
- </label>
- <section>
- <img ng-src="{{imagelist[0].photo_name|imgfilter}}">
- <img ng-src="{{imagelist[1].photo_name|imgfilter}}">
- </section>
- <span class="auditButton">
- </span>
- </div>
- <div>
- <label>
- <span>单位类型:<em ng-bind="authinfo.orgtypename"></em></span>
- <span ng-if="authinfo.orgtype!=2">职务:<em ng-bind="authinfo.title"></em></span>
- <div ng-if="authinfo.orgtype==3||authinfo.orgtype==5">
- <span>部门:<em ng-bind="authinfo.department==''?'暂无':authinfo.department"></em></span>
- </div>
- <!--高校-->
- <div ng-if="authinfo.orgtype==2">
- <span>校名:<em ng-bind="authinfo.university==''?'暂无':authinfo.university"></em></span>
- <span>职称:<em ng-bind="authinfo.positionaltitlename==''?'暂无':authinfo.positionaltitlename"></em></span>
- <span>职务:<em ng-bind="authinfo.title==''?'暂无':authinfo.title"></em></span>
- </div>
- <!--企业-->
- <div ng-if="authinfo.orgtype==1">
- <!--<span>单位名称:<em ng-bind="authinfo.orgname==''?'暂无':authinfo.orgname"></em></span>-->
- <span>组织机构代码:<em ng-bind="authinfo.orgcode==''?'暂无':authinfo.orgcode"></em></span>
- <span>法人代表姓名:<em ng-bind="authinfo.legalperson==''?'暂无':authinfo.legalperson"></em></span>
- </div>
- <div ng-if="authinfo.orgtype!=3&&authinfo.orgtype!=5">
- <span>所在地区:<em ng-bind="authinfo.district==''?'暂无':authinfo.district"></em></span>
- <span>详细地址:<em ng-bind="authinfo.detailaddress==''?'暂无':authinfo.detailaddress"></em></span>
- <span>网址:<em ng-bind="authinfo.domain==''?'暂无':authinfo.domain"></em></span>
- </div>
- </label>
- <section ng-if="authinfo.orgtype==1">
- <img ng-src="{{imagelist[3].photo_name|imgfilter}}">
- </section>
- <section ng-if="authinfo.orgtype==2||authinfo.orgtype==3||authinfo.orgtype==5">
- <img ng-src="{{imagelist[2].photo_name|imgfilter}}">
- </section>
- <section ng-if="authinfo.orgtype==4">
- <img ng-src="{{imagelist[2].photo_name|imgfilter}}">
- <img ng-src="{{imagelist[3].photo_name|imgfilter}}">
- </section>
- </div>
- <span class="auditButton">
- <span ng-if="authinfo.authenstatus==2">已通过审核</span>
- <span ng-if="authinfo.authenstatus==3">未通过审核</span>
- <button ng-if="authinfo.authenstatus==1" ng-click="refuseApplyInfo()">拒绝</button>
- <button ng-if="authinfo.authenstatus==1" ng-click="passApplyInfo()">通过</button>
- </span>
- <br/>
- </a>
- </ion-content>
- </ion-view>
|