1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="center">
- <view class="kong">
- <u-empty mode="data" text="敬请期待"></u-empty>
- </view>
-
- <!-- <u-tabbar activeColor="#EE0979" v-model="current" :list="tabbar" :mid-button="true"></u-tabbar> -->
- </view>
- </template>
- <script>
- import { tabbar } from '@/utils/tabbar.js';
- export default {
- data() {
- return {
- tabbar: tabbar,
- current: 2
- };
- }
- };
- </script>
- <style lang="less">
- .kong {
-
- height: 100vh;
- width: 750rpx;
- }
- </style>
|