12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view>
- <u-navbar leftIconSize="0" :placeholder="true" bgColor="#E96737">
- <view class="u-nav-slot" slot="left">
- <text>购物车</text>
- </view>
- </u-navbar>
-
- <custom-tab-bar :activeValue="'core'" />
- </view>
- </template>
- <script>
- import env from '../../config/env.js'
- import CustomTabBar from '../../components/custom-tab-bar/custom-tab-bar.vue'
- import $http from '@/utils/request.js'
- export default {
- components: {
- CustomTabBar,
- },
- data() {
- return {
-
- };
- },
- onShow() {
-
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
-
- </style>
- <style lang="scss" scoped>
-
- </style>
|