gateway.vue 524 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="">
  3. <view>
  4. 网关
  5. </view>
  6. <u-tabbar :value="1" :fixed="true" :placeholder="true" :safeAreaInsetBottom="true">
  7. <u-tabbar-item @click='changeRouter(item)' v-for="item in tabbarList " :key="item.icon" :text="item.text"
  8. :icon="item.icon">
  9. </u-tabbar-item>
  10. </u-tabbar>
  11. </view>
  12. </template>
  13. <script>
  14. import TabBar from "@/mixins/tabbar.js"
  15. export default {
  16. mixins: [TabBar],
  17. data() {
  18. return {
  19. };
  20. },
  21. methods: {
  22. },
  23. }
  24. </script>
  25. <style lang="scss">
  26. </style>