index.vue 656 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view class="content">
  3. <view class="content-money">
  4. <view class="status_bar"><!-- 这里是状态栏 --></view>
  5. <view class="body-title">
  6. <view class="goback-box">
  7. </view>
  8. <view class="header">实名认证</view>
  9. </view>
  10. <view class="content-bg">
  11. <image src="../../users/static/tc.png" mode=""></image>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. };
  21. },
  22. onLoad() {},
  23. onShow() {
  24. },
  25. methods: {
  26. }
  27. };
  28. </script>
  29. <style lang="scss">
  30. page {
  31. background: #f1f1f1;
  32. height: 100%;
  33. }
  34. .content-money {
  35. height: 480rpx;
  36. }
  37. </style>