| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="content">
- 储值
- </view>
- </template>
- <script>
- import tabBar from "../../components/tabBar/tabBar";
- export default {
- components:{
- tabBar
- },
- data() {
- return {
- }
- },
- onLoad() {
- uni.hideTabBar({
- animation:false
- })
- },
- methods: {
- }
- }
- </script>
- <style>
- @import '/common/css/common.css';
- @import './index.rpx.css';
- </style>
|