auditContent.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <ion-view view-title="关于我们">
  2. <div class="bar bar-header">
  3. <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
  4. <button class="button button-icon icon goback" ng-click="goback()"></button>
  5. <h1 class="bar_title">认证申请</h1>
  6. </div>
  7. <ion-content style="background-color:#f2f2f2;overflow-x:hidden;overflow-y:visible;" class="has-header">
  8. <a class="auditCard">
  9. <!--<nav>
  10. <span>认证申请</span>
  11. <span><em>申请时间</em>{{identity.updatetime}}</span>
  12. </nav>-->
  13. <!--身份证信息-->
  14. <div>
  15. <label>
  16. <span>真实姓名:<em ng-bind="authinfo.name"></em></span>
  17. <span>证件类型:<em ng-bind="authinfo.idtypename"></em></span>
  18. <span>证件号码:<em ng-bind="authinfo.cardno"></em></span>
  19. </label>
  20. <section>
  21. <img ng-src="{{imagelist[0].photo_name|imgfilter}}">
  22. <img ng-src="{{imagelist[1].photo_name|imgfilter}}">
  23. </section>
  24. <span class="auditButton">
  25. </span>
  26. </div>
  27. <div>
  28. <label>
  29. <span>单位类型:<em ng-bind="authinfo.orgtypename"></em></span>
  30. <span ng-if="authinfo.orgtype!=2">职务:<em ng-bind="authinfo.title"></em></span>
  31. <div ng-if="authinfo.orgtype==3||authinfo.orgtype==5">
  32. <span>部门:<em ng-bind="authinfo.department==''?'暂无':authinfo.department"></em></span>
  33. </div>
  34. <!--高校-->
  35. <div ng-if="authinfo.orgtype==2">
  36. <span>校名:<em ng-bind="authinfo.university==''?'暂无':authinfo.university"></em></span>
  37. <span>职称:<em ng-bind="authinfo.positionaltitlename==''?'暂无':authinfo.positionaltitlename"></em></span>
  38. <span>职务:<em ng-bind="authinfo.title==''?'暂无':authinfo.title"></em></span>
  39. </div>
  40. <!--企业-->
  41. <div ng-if="authinfo.orgtype==1">
  42. <!--<span>单位名称:<em ng-bind="authinfo.orgname==''?'暂无':authinfo.orgname"></em></span>-->
  43. <span>组织机构代码:<em ng-bind="authinfo.orgcode==''?'暂无':authinfo.orgcode"></em></span>
  44. <span>法人代表姓名:<em ng-bind="authinfo.legalperson==''?'暂无':authinfo.legalperson"></em></span>
  45. </div>
  46. <div ng-if="authinfo.orgtype!=3&&authinfo.orgtype!=5">
  47. <span>所在地区:<em ng-bind="authinfo.district==''?'暂无':authinfo.district"></em></span>
  48. <span>详细地址:<em ng-bind="authinfo.detailaddress==''?'暂无':authinfo.detailaddress"></em></span>
  49. <span>网址:<em ng-bind="authinfo.domain==''?'暂无':authinfo.domain"></em></span>
  50. </div>
  51. </label>
  52. <section ng-if="authinfo.orgtype==1">
  53. <img ng-src="{{imagelist[3].photo_name|imgfilter}}">
  54. </section>
  55. <section ng-if="authinfo.orgtype==2||authinfo.orgtype==3||authinfo.orgtype==5">
  56. <img ng-src="{{imagelist[2].photo_name|imgfilter}}">
  57. </section>
  58. <section ng-if="authinfo.orgtype==4">
  59. <img ng-src="{{imagelist[2].photo_name|imgfilter}}">
  60. <img ng-src="{{imagelist[3].photo_name|imgfilter}}">
  61. </section>
  62. </div>
  63. <span class="auditButton">
  64. <span ng-if="authinfo.authenstatus==2">已通过审核</span>
  65. <span ng-if="authinfo.authenstatus==3">未通过审核</span>
  66. <button ng-if="authinfo.authenstatus==1" ng-click="refuseApplyInfo()">拒绝</button>
  67. <button ng-if="authinfo.authenstatus==1" ng-click="passApplyInfo()">通过</button>
  68. </span>
  69. <br/>
  70. </a>
  71. </ion-content>
  72. </ion-view>