1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="content">
- <view class="content-money">
- <view class="status_bar"><!-- 这里是状态栏 --></view>
- <view class="body-title">
- <view class="goback-box">
- </view>
- <view class="header">实名认证</view>
- </view>
- <view class="content-bg">
- <image src="../../users/static/tc.png" mode=""></image>
- </view>
-
- </view>
-
- </view>
- </template>
- <script>
-
- export default {
- data() {
- return {
-
- };
- },
- onLoad() {},
- onShow() {
-
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss">
- page {
- background: #f1f1f1;
- height: 100%;
- }
- .content-money {
- height: 480rpx;
- }
-
- </style>
|