kj-tabbar.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view>
  3. <u-tabbar :list="list" :fixed="true" :safeAreaInsetBottom="true" active-color="#F83224" inactive-color="#333"
  4. :value="value1">
  5. <u-tabbar-item :text="item.text" v-for="(item,idx) in list" @click="click1" :key="idx">
  6. <image style="width: 40rpx;height: 40rpx;" class="u-page__item__slot-icon" slot="inactive-icon"
  7. :src="item.iconPath"></image>
  8. <image style="width: 40rpx;height: 40rpx;" class="u-page__item__slot-icon" slot="active-icon"
  9. :src="item.selectedIconPath"></image>
  10. </u-tabbar-item>
  11. </u-tabbar>
  12. </view>
  13. </template>
  14. <script>
  15. import {
  16. mapState
  17. } from "vuex"
  18. import {
  19. created
  20. } from "../../uview-ui/libs/mixin/mixin"
  21. export default {
  22. name: "kj-tabbar",
  23. data() {
  24. return {
  25. list: [{
  26. "iconPath": '../../static/express1.png',
  27. "selectedIconPath": "../../static/express2.png",
  28. "text": "跨境速递",
  29. "pagePath": "pages/express/express"
  30. },
  31. {
  32. "iconPath": "../../static/index1.png",
  33. "selectedIconPath": "../../static/index2.png",
  34. "text": "商城",
  35. "pagePath": "pages/index/index"
  36. },
  37. {
  38. "iconPath": "../../static/shop.png",
  39. "selectedIconPath": "../../static/shop.png",
  40. "text": "购",
  41. "pagePath": "pages/shopping/shopping"
  42. },
  43. {
  44. "iconPath": "../../static/cart1.png",
  45. "selectedIconPath": "../../static/cart2.png",
  46. "text": "购物车",
  47. "pagePath": "pages/cart/cart"
  48. },
  49. {
  50. "iconPath": "../../static/mine1.png",
  51. "selectedIconPath": "../../static/mine2.png",
  52. "text": "我的",
  53. "pagePath": "pages/mine/mine"
  54. }
  55. ],
  56. value1: 0,
  57. };
  58. },
  59. created() {
  60. if (uni.getStorageSync('tabbar')) {
  61. this.value1 = uni.getStorageSync('tabbar')
  62. }
  63. },
  64. methods: {
  65. click1(e) {
  66. this.value1 = e
  67. console.log(e);
  68. if (this.value1 == 4) {
  69. uni.navigateTo({
  70. url: '../../pages/mine/mine'
  71. })
  72. }
  73. if (this.value1 == 0) {
  74. uni.navigateTo({
  75. url: '../../pages/express/express'
  76. })
  77. }
  78. if (this.value1 == 1) {
  79. uni.navigateTo({
  80. url: '../../pages/index/index'
  81. })
  82. }
  83. if (this.value1 == 2) {
  84. uni.navigateTo({
  85. url: '../../pages/shopping/shopping'
  86. })
  87. }
  88. if (this.value1 == 3) {
  89. uni.navigateTo({
  90. url: '../../pages/cart/cart'
  91. })
  92. }
  93. uni.setStorageSync('tabbar', e)
  94. },
  95. }
  96. // created() {},
  97. // computed: {
  98. // ...mapState(['config'])
  99. // },
  100. // watch: {
  101. // config: {
  102. // handler(val) {
  103. // if (val.report_switch == 1) {
  104. // this.list = [{
  105. // "iconPath": "/static/images/index.png",
  106. // "pagePath": "/pages/index/index",
  107. // "selectedIconPath": "/static/images/index1.png",
  108. // "text": "首页"
  109. // },
  110. // {
  111. // "iconPath": "/static/images/video.png",
  112. // "pagePath": "/pages/video/video",
  113. // "selectedIconPath": "/static/images/video1.png",
  114. // "text": "视频"
  115. // },
  116. // {
  117. // "iconPath": "/static/images/baobei.png",
  118. // "pagePath": "/pages/baobei/baobei",
  119. // "selectedIconPath": "/static/images/baobei1.png",
  120. // "text": "客户报备"
  121. // },
  122. // {
  123. // "iconPath": "/static/images/mine.png",
  124. // "pagePath": "/pages/mine/mine",
  125. // "selectedIconPath": "/static/images/mine1.png",
  126. // "text": "我的"
  127. // }
  128. // ]
  129. // }
  130. // },
  131. // deep: true
  132. // }
  133. // }
  134. }
  135. </script>
  136. <style lang="scss">
  137. </style>