tab-bar.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view class="tab-bar">
  3. <view class="footer">
  4. <view class="index" @click="swithTab(1)">
  5. <view>
  6. <image
  7. :src="currentPage === 1?'../../static/tabbar/menu-1.png':'../../static/tabbar/menu-1-active.png'">
  8. </image>
  9. </view>
  10. <view :class="[currentPage === 1?'current':'']">首页</view>
  11. </view>
  12. <view class="scan" @click="swithTab(2)">
  13. <view>
  14. <image src="../../static/tabbar/menu-2.png"></image>
  15. </view>
  16. <view class="hover">扫码换电</view>
  17. </view>
  18. <view class="index" @click="swithTab(3)">
  19. <view>
  20. <image
  21. :src="currentPage === 3?'../../static/tabbar/menu-3-active.png':'../../static/tabbar/menu-3.png'">
  22. </image>
  23. </view>
  24. <view :class="[currentPage === 3?'current':'']">我的</view>
  25. </view>
  26. </view>
  27. <view class="bottom" v-if="plat.startsWith('iPhone X')"></view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. name: "tab-bar",
  33. data() {
  34. return {
  35. currentPage: 0,
  36. stationCode: null,
  37. plat:uni.getSystemInfoSync().model
  38. };
  39. },
  40. mounted() {
  41. this.getRoute()
  42. },
  43. methods: {
  44. swithTab(num) {
  45. if (num === 1) {
  46. uni.switchTab({
  47. url: '/pages/index/index',
  48. });
  49. } else if (num === 2) {
  50. if (this.$storage.getJson("token")) {
  51. // let stationCode='st001'
  52. // uni.navigateTo({
  53. // url:'/pages/powerchange/index?stationCode='+stationCode
  54. // })
  55. let that = this
  56. uni.scanCode({
  57. success: function(res) {
  58. const url = res.result
  59. if (url.startsWith('https://zk.li-ai.com.cn/?station_code=')) {
  60. const parts = url.split("=")
  61. if (parts.length === 2) {
  62. that.stationCode = parts[1]
  63. uni.navigateTo({
  64. url: '/pages/powerchange/index?stationCode=' +that.stationCode
  65. })
  66. } else {
  67. uni.navigateTo({
  68. url: '/pages/public/404?error=' + '站点编号错误!!'
  69. })
  70. }
  71. } else {
  72. uni.navigateTo({
  73. url: '/pages/public/404?error=' + '二维码链接错误!!'
  74. })
  75. }
  76. },
  77. });
  78. } else {
  79. uni.navigateTo({
  80. url: '/pages/public/login',
  81. });
  82. }
  83. } else {
  84. if (this.$storage.getJson("token")) {
  85. uni.switchTab({
  86. url: '/pages/ucenter/index',
  87. });
  88. } else {
  89. uni.navigateTo({
  90. url: '/pages/public/login',
  91. });
  92. }
  93. }
  94. },
  95. getRoute() {
  96. let curPage = getCurrentPages();
  97. let route = curPage[curPage.length - 1].route
  98. if (route === 'pages/index/index') {
  99. this.currentPage = 1
  100. } else if (route === 'pages/ucenter/index') {
  101. this.currentPage = 3
  102. }
  103. }
  104. }
  105. }
  106. </script>
  107. <style lang="scss" scoped>
  108. .tab-bar{
  109. display: flex;
  110. flex-direction: column;
  111. position: fixed;
  112. left: 0;
  113. right: 0;
  114. bottom: 0rpx;
  115. .bottom{
  116. background-color: #fff;
  117. height: 48rpx;
  118. display: block;
  119. }
  120. .footer {
  121. width: 100%;
  122. height: 106rpx;
  123. background-image: url(~@/static/bbg.png);
  124. background-size: 100% 100%;
  125. display: flex;
  126. justify-content: space-around;
  127. padding-top: 15rpx;
  128. font-size: 26rpx;
  129. box-sizing: border-box;
  130. image {
  131. width: 39rpx;
  132. height: 39rpx;
  133. }
  134. .index {
  135. width: 240rpx;
  136. text-align: center;
  137. }
  138. .scan {
  139. position: relative;
  140. display: flex;
  141. flex: 1;
  142. text-align: center;
  143. view:first-child {
  144. position: absolute;
  145. bottom: 30rpx;
  146. width: 100%;
  147. }
  148. view:last-child {
  149. position: absolute;
  150. bottom: 6rpx;
  151. width: 100%;
  152. }
  153. image {
  154. width: 100rpx;
  155. height: 100rpx;
  156. }
  157. }
  158. .hover {
  159. color: #58be6b;
  160. }
  161. .current {
  162. color: #959ea8;
  163. }
  164. }
  165. }
  166. </style>