index.vue 643 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view>
  3. <u-navbar leftIconSize="0" :placeholder="true" bgColor="#E96737">
  4. <view class="u-nav-slot" slot="left">
  5. <text>购物车</text>
  6. </view>
  7. </u-navbar>
  8. <custom-tab-bar :activeValue="'core'" />
  9. </view>
  10. </template>
  11. <script>
  12. import env from '../../config/env.js'
  13. import CustomTabBar from '../../components/custom-tab-bar/custom-tab-bar.vue'
  14. import $http from '@/utils/request.js'
  15. export default {
  16. components: {
  17. CustomTabBar,
  18. },
  19. data() {
  20. return {
  21. };
  22. },
  23. onShow() {
  24. },
  25. methods: {
  26. },
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. </style>
  31. <style lang="scss" scoped>
  32. </style>