certification.component.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <ion-header [translucent]="true" class="header">
  2. <ion-toolbar class="toolbar">
  3. <ion-buttons slot="start" (click)="back()">
  4. <ion-icon
  5. name="chevron-back-outline"
  6. style="width: 6.4vw; height: 6.4vw; color: #000000"
  7. ></ion-icon>
  8. </ion-buttons>
  9. <ion-title class="title">实名认证</ion-title>
  10. </ion-toolbar>
  11. </ion-header>
  12. <ion-content class="content">
  13. <div class="hred">
  14. <div class="hred-left">
  15. {{ title }}
  16. </div>
  17. <img
  18. src="http://cloud.file.futurestack.cn/real-idcard.png"
  19. class="hred-img"
  20. />
  21. </div>
  22. @if (isReal) {
  23. <div class="tips">
  24. <img
  25. class="tips-img"
  26. src="https://cloud.file.futurestack.cn/game-auth.png"
  27. alt=""
  28. />
  29. <div class="text">您已完成认证</div>
  30. </div>
  31. <div class="pf">
  32. <div style="margin-right: 10px">{{ secretName }}*</div>
  33. <div class="">{{ secretIdCard }}********</div>
  34. </div>
  35. } @else{
  36. <div class="h3">填写身份信息认证</div>
  37. <div class="li">
  38. 真实姓名
  39. <input
  40. type="text"
  41. [(ngModel)]="name"
  42. name="name"
  43. autocomplete="off"
  44. placeholder="请填写真实姓名"
  45. autocomplete="new-password"
  46. />
  47. </div>
  48. <div class="li">
  49. 身份证号
  50. <input
  51. type="text"
  52. [(ngModel)]="idCard"
  53. maxlength="18"
  54. name="idCard"
  55. autocomplete="off"
  56. placeholder="请填写身份证号"
  57. autocomplete="new-password"
  58. />
  59. </div>
  60. <div class="footer" (click)="check()">提交</div>
  61. }
  62. <div class="agreement">
  63. <ion-checkbox color="primary" [(ngModel)]="agreement"></ion-checkbox>
  64. <div class="content">
  65. 注册即代表同意<span (click)="showAgreement()"
  66. >《爱聊直播平台隐私协议》</span
  67. >
  68. </div>
  69. </div>
  70. </ion-content>