| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view class="container">
- <view class="account_number">
-
- </view>
- <view class="toptabbar">
-
- </view>
-
- </view>
- </template>
-
- <script setup>
- import {onMounted } from 'vue';
-
-
-
-
-
- onMounted(() => {
-
- });
-
- </script>
-
- <style scoped>
- .uni-page{
- width: 100%;
- height: 100%;
- }
- .container {
- height: 92vh;
- background: linear-gradient(to bottom, #007545 -40%, #f0f5f5 40%, #f0f5f5 100%);
- box-sizing: border-box;
- }
- .account_number{
- width: 100%;
- padding: 20rpx;
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- }
-
-
- .toptabbar {
- width: 100%;
- padding: 10rpx 20rpx;
- box-sizing: border-box;
- }
-
-
-
- </style>
|