帧视界壹通告,付费看视频的微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
1.6 KiB

  1. <template>
  2. <view class="auth-person">
  3. <!--顶部导航栏-->
  4. <navbar leftClick @leftClick="$utils.navigateBack" title="认证个人"/>
  5. <!--身份信息页面-->
  6. <view class="container">
  7. <view class="form-item">
  8. <view class="label">姓名</view>
  9. <view class="input">{{ name }}</view>
  10. </view>
  11. <uv-divider :hairline="false" lineColor="#c0c0c0" dot></uv-divider>
  12. <view class="form-item">
  13. <view class="label">身份证号</view>
  14. <view class="input">{{ idCard }}</view>
  15. </view>
  16. <uv-divider :hairline="false" lineColor="#c0c0c0" dot></uv-divider>
  17. </view>
  18. <!--下一步按钮-->
  19. <button @click="onNextClick" class="bottomBtn">
  20. 立即认证
  21. </button>
  22. </view>
  23. </template>
  24. <script>
  25. import '../../common.css'; // 引入公共 CSS 文件
  26. export default {
  27. data() {
  28. return {
  29. name: 'xiaohua',
  30. idCard: '2101472154874512'
  31. }
  32. },
  33. methods: {
  34. onCameraClick() {
  35. // 添加拍照或选择图片的逻辑
  36. },
  37. onNextClick() {
  38. this.$utils.navigateTo("/mine/purse");
  39. }
  40. }
  41. }
  42. </script>
  43. <style scoped lang="scss">
  44. * {
  45. box-sizing: border-box;
  46. margin: 0;
  47. padding: 0;
  48. }
  49. .auth-person {
  50. .container {
  51. padding: 100rpx 50rpx 50rpx 50rpx;
  52. //border: 1px solid red;
  53. .header {
  54. margin-bottom: 40rpx;
  55. font-size: 28rpx;
  56. color: #666;
  57. }
  58. .form-item {
  59. margin-bottom: 40rpx;
  60. .label {
  61. font-size: 36rpx;
  62. margin-bottom: 10px;
  63. display: block;
  64. }
  65. .input {
  66. width: 100vw;
  67. font-size: 38rpx;
  68. margin-top: 40rpx;
  69. }
  70. }
  71. }
  72. }
  73. </style>