index.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <div class="layout">
  3. <router-view />
  4. <!-- 底部导航 -->
  5. <van-tabbar
  6. v-model="active"
  7. safe-area-inset-bottom
  8. placeholder
  9. route
  10. >
  11. <van-tabbar-item
  12. v-for="(item, index) in bottomTabs"
  13. :key="index"
  14. :to="item.to"
  15. >
  16. <span>{{ item.title }}</span>
  17. <template #icon="props">
  18. <img :src="props.active ? item.icon.active : item.icon.inactive" />
  19. </template>
  20. </van-tabbar-item>
  21. </van-tabbar>
  22. </div>
  23. </template>
  24. <script>
  25. import { Tabbar, TabbarItem } from "vant";
  26. // import RightPanel from "@/components/RightPanel";
  27. // import { AppMain, Navbar, Settings, Sidebar, TagsView } from "./components";
  28. // import ResizeMixin from "./mixin/ResizeHandler";
  29. // import { mapState } from "vuex";
  30. export default {
  31. name: "Layout",
  32. components: {
  33. "van-tabbar": Tabbar,
  34. "van-tabbar-item": TabbarItem,
  35. },
  36. data() {
  37. return {
  38. active: 0,
  39. bottomTabs: [
  40. //底部导航配置
  41. {
  42. to: "/home/paddy",
  43. title: "藏金·1745",
  44. icon: {
  45. active: require("@/assets/images/home/1745-active.png"),
  46. inactive: require("@/assets/images/home/bottomBtn1.png"),
  47. },
  48. },
  49. {
  50. to: "/home/product",
  51. title: "兑换中心",
  52. icon: {
  53. active: require("@/assets/images/home/product-active.png"),
  54. inactive: require("@/assets/images/home/bottomBtn2.png"),
  55. },
  56. },
  57. {
  58. to: "/home/my",
  59. title: "个人中心",
  60. icon: {
  61. active: require("@/assets/images/home/personal-active.png"),
  62. inactive: require("@/assets/images/home/bottomBtn3.png"),
  63. },
  64. },
  65. ],
  66. };
  67. },
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. @import "../assets/css/_handle.scss";
  72. @mixin layout-dev {
  73. position: fixed;
  74. height: 100%;
  75. width: 100%;
  76. padding: 0;
  77. margin: 0;
  78. box-sizing: border-box;
  79. overflow: scroll;
  80. }
  81. .layout {
  82. @include layout-dev;
  83. }
  84. .van-tabbar-item{
  85. @include font_color("font_tb_j");
  86. @include background("bd_tb_j");
  87. }
  88. .van-hairline--top-bottom.van-tabbar.van-tabbar--fixed
  89. .van-tabbar-item.van-tabbar-item--active {
  90. @include font_color("font_tb_d");
  91. // background: #000;
  92. }
  93. // @import "~@/styles/mixin.scss";
  94. // @import "~@/styles/variables.scss";
  95. // .app-wrapper {
  96. // min-width: 1200px;
  97. // @include clearfix;
  98. // position: relative;
  99. // height: 100%;
  100. // width: 100%;
  101. // &.mobile.openSidebar {
  102. // position: fixed;
  103. // top: 0;
  104. // }
  105. // }
  106. // .drawer-bg {
  107. // background: #000;
  108. // opacity: 0.3;
  109. // width: 100%;
  110. // top: 0;
  111. // height: 100%;
  112. // position: absolute;
  113. // z-index: 999;
  114. // }
  115. // .fixed-header {
  116. // position: fixed;
  117. // top: 0;
  118. // right: 0;
  119. // z-index: 9;
  120. // width: calc(100% - #{$sideBarWidth});
  121. // transition: width 0.28s;
  122. // }
  123. // .hideSidebar .fixed-header {
  124. // width: calc(100% - 54px);
  125. // }
  126. // .mobile .fixed-header {
  127. // width: 100%;
  128. // }
  129. </style>