帧视界壹通告,付费看视频的微信小程序
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.

90 lines
1.7 KiB

10 months ago
10 months ago
  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. uni.redirectTo({
  39. url: '/pages_mine/mine/purse'
  40. })
  41. }
  42. }
  43. }
  44. </script>
  45. <style scoped lang="scss">
  46. * {
  47. box-sizing: border-box;
  48. margin: 0;
  49. padding: 0;
  50. }
  51. .auth-person {
  52. .container {
  53. padding: 100rpx 50rpx 50rpx 50rpx;
  54. //border: 1px solid red;
  55. .header {
  56. margin-bottom: 40rpx;
  57. font-size: 28rpx;
  58. color: #666;
  59. }
  60. .form-item {
  61. margin-bottom: 40rpx;
  62. .label {
  63. font-size: 36rpx;
  64. margin-bottom: 10px;
  65. display: block;
  66. }
  67. .input {
  68. width: 100vw;
  69. font-size: 38rpx;
  70. margin-top: 40rpx;
  71. }
  72. }
  73. }
  74. }
  75. </style>