kj-tabbar.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. export default {
  19. name: "kj-tabbar",
  20. props: {
  21. value1: Number
  22. },
  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. };
  57. },
  58. created() {
  59. // if (uni.getStorageSync('tabbar')!=1) {
  60. // this.value1 = uni.getStorageSync('tabbar')
  61. // }
  62. },
  63. methods: {
  64. // click1(e) {
  65. // this.value1 = e
  66. // console.log(e);
  67. // if (this.value1 == 4) {
  68. // uni.redirectTo({
  69. // url: '../../pages/mine/mine'
  70. // })
  71. // }
  72. // if (this.value1 == 0) {
  73. // uni.redirectTo({
  74. // url: '../../pages/express/express'
  75. // })
  76. // }
  77. // if (this.value1 == 1) {
  78. // uni.redirectTo({
  79. // url: '../../pages/index/index'
  80. // })
  81. // }
  82. // if (this.value1 == 2) {
  83. // uni.redirectTo({
  84. // url: '../../pages/shopping/shopping'
  85. // })
  86. // }
  87. // if (this.value1 == 3) {
  88. // uni.redirectTo({
  89. // url: '../../pages/cart/cart'
  90. // })
  91. // }
  92. // uni.setStorageSync('tabbar', e)
  93. // },
  94. click1(e) {
  95. console.log(e);
  96. if (e == 4) {
  97. uni.switchTab({
  98. url: '../../pages/mine/mine'
  99. })
  100. }
  101. if (e == 0) {
  102. uni.switchTab({
  103. url: '../../pages/express/express'
  104. })
  105. }
  106. if (e == 1) {
  107. uni.switchTab({
  108. url: '../../pages/index/index'
  109. })
  110. }
  111. if (e == 2) {
  112. uni.switchTab({
  113. url: '../../pages/shopping/shopping'
  114. })
  115. }
  116. if (e == 3) {
  117. uni.switchTab({
  118. url: '../../pages/cart/cart'
  119. })
  120. }
  121. // uni.setStorageSync('tabbar', e)
  122. },
  123. }
  124. // created() {},
  125. // computed: {
  126. // ...mapState(['config'])
  127. // },
  128. // watch: {
  129. // config: {
  130. // handler(val) {
  131. // if (val.report_switch == 1) {
  132. // this.list = [{
  133. // "iconPath": "/static/images/index.png",
  134. // "pagePath": "/pages/index/index",
  135. // "selectedIconPath": "/static/images/index1.png",
  136. // "text": "首页"
  137. // },
  138. // {
  139. // "iconPath": "/static/images/video.png",
  140. // "pagePath": "/pages/video/video",
  141. // "selectedIconPath": "/static/images/video1.png",
  142. // "text": "视频"
  143. // },
  144. // {
  145. // "iconPath": "/static/images/baobei.png",
  146. // "pagePath": "/pages/baobei/baobei",
  147. // "selectedIconPath": "/static/images/baobei1.png",
  148. // "text": "客户报备"
  149. // },
  150. // {
  151. // "iconPath": "/static/images/mine.png",
  152. // "pagePath": "/pages/mine/mine",
  153. // "selectedIconPath": "/static/images/mine1.png",
  154. // "text": "我的"
  155. // }
  156. // ]
  157. // }
  158. // },
  159. // deep: true
  160. // }
  161. // }
  162. }
  163. </script>
  164. <style lang="scss">
  165. </style>