移动端
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

yinnongIndex.vue 976 B

2 lat temu
12345678910111213141516171819202122232425262728293031323334353637
  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/done" icon="completed">已办</van-tabbar-item>
  8. <van-tabbar-item replace to="/yinnong/workbench" icon="apps-o">工作台</van-tabbar-item>
  9. <!-- <van-tabbar-item replace to="/yinnong/home" icon="wap-home-o">家园</van-tabbar-item> -->
  10. <van-tabbar-item replace to="/yinnong/my" icon="manager-o">我的</van-tabbar-item>
  11. </van-tabbar>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: "yinnongIndex",
  17. data() {
  18. return {
  19. active: 0,
  20. };
  21. },
  22. created() {
  23. ;
  24. },
  25. methods: {
  26. },
  27. };
  28. </script>
  29. <style scoped >
  30. >>> .van-tabbar{
  31. height:2rem;
  32. }
  33. </style>