移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

yinnongIndex.vue 1.2 KiB

пре 3 година
пре 2 година
пре 3 година
пре 2 година
пре 3 година
123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div class="app-container">
  3. <router-view />
  4. <van-tabbar route :placeholder="true" >
  5. <!-- <van-tabbar-item replace to="/yinnong/publicity" icon="bullhorn-o">公示</van-tabbar-item>-->
  6. <!-- <van-tabbar-item replace to="/yinnong/doneCompleted/completed" icon="todo-list-o">待办</van-tabbar-item>-->
  7. <van-tabbar-item replace to="/yinnong/doneCompleted/completedNew" icon="todo-list-o">待办</van-tabbar-item>
  8. <!-- <van-tabbar-item replace to="/yinnong/doneCompleted/done" icon="completed">已办</van-tabbar-item>-->
  9. <van-tabbar-item replace to="/yinnong/doneCompleted/doneNew" icon="completed">已办</van-tabbar-item>
  10. <van-tabbar-item replace to="/yinnong/workbench" icon="apps-o">工作台</van-tabbar-item>
  11. <!-- <van-tabbar-item replace to="/yinnong/home" icon="wap-home-o">家园</van-tabbar-item> -->
  12. <van-tabbar-item replace to="/yinnong/my" icon="manager-o">我的</van-tabbar-item>
  13. </van-tabbar>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. name: "yinnongIndex",
  19. data() {
  20. return {
  21. active: 0,
  22. };
  23. },
  24. created() {
  25. ;
  26. },
  27. methods: {
  28. },
  29. };
  30. </script>
  31. <style scoped >
  32. >>> .van-tabbar{
  33. height:2rem;
  34. }
  35. </style>