real_name.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <template>
  2. <view class="content">
  3. <view class="" v-if="state">
  4. <view class="box">
  5. <view class="vflex jcenter box_top">
  6. <view class="text_style1">{{name}}</view>
  7. <view class="text_style1">{{idNumber}}</view>
  8. </view>
  9. <view class="text_style2">个人隐私信息安全保障中</view>
  10. </view>
  11. </view>
  12. <view class="" v-else>
  13. <view class="title">
  14. <view>实名认证</view>
  15. <view class="subTitle">为保障您的资金安全、提升您的账号信用、请您如实填写您的身份信息</view>
  16. </view>
  17. <view class="form">
  18. <view class="form_item">
  19. <view class="title">真实姓名</view>
  20. <u-input v-model="name" border="bottom" placeholder="请填写您本人的真实姓名"></u-input>
  21. </view>
  22. <view class="form_item">
  23. <view class="title">身份证号</view>
  24. <u-input v-model="idNumber" border="bottom" placeholder="请填写您的身份证号"></u-input>
  25. </view>
  26. </view>
  27. <view class="hflex acenter">
  28. <u-checkbox-group @change="checkboxChange">
  29. <u-checkbox v-model="agree" shape="circle"></u-checkbox>
  30. </u-checkbox-group>
  31. <view class="text">阅读并同意<span class="read" @click="open(0)">《实名认证授权》</span>、<span class="read" @click="open(1)">《船百知隐私政策》</span></view>
  32. </view>
  33. <view class="button hflex acenter jcenter" @click="toAuth">
  34. <view>人脸认证</view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import $api from '@/static/js/api.js'
  41. var that = ''
  42. export default {
  43. data() {
  44. return {
  45. name: '',
  46. idNumber: '',
  47. agree: false,
  48. showProtocol: false,
  49. protocolTitle: '',
  50. protocolContent: '',
  51. state: false,
  52. }
  53. },
  54. onLoad(options) {
  55. that = this
  56. that.state = options.state
  57. console.log(options);
  58. },
  59. methods: {
  60. // 阅读并同意
  61. checkboxChange(n) {
  62. this.agree = !this.agree
  63. },
  64. // 打开弹出层
  65. open(index) {
  66. const that = this
  67. // if(index == 0) {
  68. // $api.req({
  69. // url: '/api/Publics/config_info'
  70. // }, function(res) {
  71. // if (res.code == 1) {
  72. // that.protocolTitle = '用户协议'
  73. // that.protocolContent = res.data.xieyi
  74. // }
  75. // })
  76. // } else {
  77. // that.protocolTitle = '隐私政策'
  78. // that.protocolContent = ''
  79. // }
  80. // that.showProtocol = true
  81. },
  82. toAuth() {
  83. $api.req({
  84. url: '/data/api.auth.Center/userCertification',
  85. method: 'POST',
  86. data: {
  87. username: that.name,
  88. id_card: that.idNumber,
  89. }
  90. }, function(res) {
  91. if(res.code == 1) {
  92. console.log(res);
  93. }
  94. })
  95. }
  96. },
  97. }
  98. </script>
  99. <style lang="scss" scoped>
  100. .content::v-deep {
  101. padding: 0 30rpx;
  102. background-color: #fff;
  103. .title {
  104. margin-top: 40rpx;
  105. width: 100%;
  106. font-size: 48rpx;
  107. color: #222;
  108. }
  109. .subTitle {
  110. padding-top: 12rpx;
  111. font-size: 26rpx;
  112. color: #888;
  113. line-height: 36rpx;
  114. }
  115. .form {
  116. width: 100%;
  117. margin: 30rpx 0;
  118. .form_item {
  119. .title {
  120. font-size: 28rpx;
  121. color: #444;
  122. }
  123. .u-input {
  124. padding: 28rpx 0 !important;
  125. }
  126. }
  127. }
  128. .text {
  129. font-size: 24rpx;
  130. color: #9c9c9c;
  131. }
  132. .read {
  133. color: #2a63f3;
  134. }
  135. .button {
  136. width: 100%;
  137. height: 96rpx;
  138. background-color: #506dff;
  139. border-radius: 50rpx;
  140. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  141. font-size: 40rpx;
  142. color: #fff;
  143. margin: 106rpx 0 36rpx;
  144. }
  145. .box {
  146. margin-top: 40rpx;
  147. background: url('/static/images/mine/real-bg.png') no-repeat;
  148. background-size: 100%;
  149. width: 100%;
  150. height: 268rpx;
  151. .box_top {
  152. width: 100%;
  153. box-sizing: border-box;
  154. padding: 42rpx 0 42rpx 244rpx;
  155. }
  156. .text_style1 {
  157. font-size: 36rpx;
  158. color: #fff;
  159. margin-top: 18rpx;
  160. }
  161. .text_style2 {
  162. width: 100%;
  163. box-sizing: border-box;
  164. padding: 0 0 0 60rpx;
  165. font-size: 20rpx;
  166. color: #fff;
  167. }
  168. }
  169. }
  170. </style>