index.vue 386 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="content">
  3. 储值
  4. </view>
  5. </template>
  6. <script>
  7. import tabBar from "../../components/tabBar/tabBar";
  8. export default {
  9. components:{
  10. tabBar
  11. },
  12. data() {
  13. return {
  14. }
  15. },
  16. onLoad() {
  17. uni.hideTabBar({
  18. animation:false
  19. })
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style>
  26. @import '/common/css/common.css';
  27. @import './index.rpx.css';
  28. </style>