realAuth.vue 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view class="content pdx-48">
  3. <view class="w h-88 flex ai_center jc_center mgt-88 p-rel">
  4. <image
  5. @click="$navBack()"
  6. class="w-48 h-48 abs_left"
  7. src="/static/logo.png"
  8. mode="scaleToFill"
  9. />
  10. <view class="text-36 text-500 text-070202">实名认证</view>
  11. </view>
  12. <view class="w mgt-16">
  13. <view class="text-32 text-600 text-303030">身份验证</view>
  14. <view class="mgt-24 text-26 text-500 text-303030">
  15. <view class="mgb-16">
  16. 根据
  17. <text class="text-E02E24">《网络安全法》</text>
  18. 相关规定,涉及到资金相关操作,
  19. </view>
  20. 必选需要用户实名认证,
  21. <text class="text-E02E24">只需认证一次,且无法进行更改</text>
  22. </view>
  23. <view
  24. class="w radio-24 mgt-24"
  25. style="height: 424rpx; background-color: #ffede2"
  26. ></view>
  27. <view
  28. class="w radio-24 mgt-24"
  29. style="height: 424rpx; background-color: #ffede2"
  30. ></view>
  31. <view class="w h-96 flex ai_center jc_between mgt-24 menu_border">
  32. <view class="text-28 text-400 text-303030">姓名</view>
  33. <view class="flex ai_center">
  34. <view class="text-24 text-600 text-070202">陈毛毛</view>
  35. <image
  36. class="w-48 h-48 mgl-30"
  37. src="/static/logo.png"
  38. mode="scaleToFill"
  39. />
  40. </view>
  41. </view>
  42. <view class="w h-96 flex ai_center jc_between mgt-16 menu_border">
  43. <view class="text-28 text-400 text-303030">身份证号</view>
  44. <view class="flex ai_center">
  45. <view class="text-24 text-600 text-070202">35052119950452522</view>
  46. <image
  47. class="w-48 h-48 mgl-30"
  48. src="/static/logo.png"
  49. mode="scaleToFill"
  50. />
  51. </view>
  52. </view>
  53. <button class="btn">提交验证</button>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. data() {
  60. return {};
  61. },
  62. onLoad() {},
  63. methods: {},
  64. };
  65. </script>
  66. <style scoped lang="scss">
  67. .menu_border {
  68. border-bottom: 2rpx solid #f2f2f7;
  69. }
  70. .btn {
  71. margin-top: 88rpx;
  72. width: 100%;
  73. height: 96rpx;
  74. flex-shrink: 0;
  75. border-radius: 64rpx;
  76. background: #fe6505;
  77. color: #ffffff;
  78. text-align: center;
  79. font-family: "MiSans VF";
  80. font-size: 36rpx;
  81. font-weight: 500;
  82. }
  83. </style>