custom-tab-bar.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <view class="tabbar hflex jbetween">
  3. <view class="tb vflex acenter" @click="toTab(1)">
  4. <image src="/static/images/tabbar/tab1_active.png" v-if="current == 1" class="icon"></image>
  5. <image src="/static/images/tabbar/tab1.png" v-else class="icon"></image>
  6. <view class="tab_text" :class="current == 1?'tab_text2': ''">商品</view>
  7. </view>
  8. <view class="tb vflex acenter" @click="open">
  9. <image src="/static/images/tabbar/tab2.png" class="icon2"></image>
  10. <view class="tab_text" style="padding-top: 50rpx;">发布</view>
  11. </view>
  12. <view class="tb vflex acenter" @click="toTab(3)">
  13. <image src="/static/images/tabbar/tab3_active.png" v-if="current == 3" class="icon"></image>
  14. <image src="/static/images/tabbar/tab3.png" v-else class="icon"></image>
  15. <view class="tab_text" :class="current == 3?'tab_text2': ''">我的</view>
  16. </view>
  17. <u-popup :show="show" @close="close" :round="10" mode="bottom">
  18. <view class="popu">
  19. <view class="hflex">
  20. <block v-for="(item,index) in orderList" :key="index">
  21. <view class="vflex acenter" style="width: 25%;padding-top: 80rpx;" @click="toOrder(item.url)">
  22. <image :src="item.img" class="order_img"></image>
  23. <view class="order_text">{{item.name}}</view>
  24. </view>
  25. </block>
  26. </view>
  27. <view class="hflex acenter jcenter">
  28. <image src="/static/images/common/close.png" @click="close" class="close"></image>
  29. </view>
  30. </view>
  31. </u-popup>
  32. </view>
  33. </template>
  34. <script>
  35. import $api from '@/static/js/api.js'
  36. export default {
  37. name: 'custom-tab-bar',
  38. props: {
  39. current: {
  40. type: Number,
  41. value: 1
  42. }
  43. },
  44. data() {
  45. return {
  46. show: false,
  47. orderList: [
  48. {
  49. img: '/static/images/common/order1.png',
  50. name: '采购订单',
  51. url: '/pages/release/purchase/purchase'
  52. },
  53. {
  54. img: '/static/images/common/order2.png',
  55. name: '生产订单',
  56. url: '/pages/release/production/production'
  57. },
  58. {
  59. img: '/static/images/common/order3.png',
  60. name: '外协订单',
  61. url: '/pages/release/waixie/waixie'
  62. },
  63. {
  64. img: '/static/images/common/order4.png',
  65. name: '海运订单',
  66. url: '/pages/release/ocean/ocean'
  67. }
  68. ]
  69. }
  70. },
  71. methods: {
  72. open() {
  73. this.show = true
  74. },
  75. close() {
  76. this.show = false
  77. },
  78. toOrder(url) {
  79. $api.jump(url)
  80. },
  81. toTab(index) {
  82. if(index == 1) {
  83. $api.jump('/pages/tabbar/index/index',3)
  84. } else {
  85. $api.jump('/pages/tabbar/mine/mine',3)
  86. }
  87. }
  88. }
  89. }
  90. </script>
  91. <style lang="scss" scoped>
  92. .tabbar {
  93. width: 750rpx;
  94. height: 182rpx;
  95. position: fixed;
  96. bottom: 0;
  97. z-index: 999999;
  98. background: url('/static/images/tabbar/tab_bg.png') no-repeat;
  99. background-size: 100%;
  100. box-sizing: border-box;
  101. padding: 20rpx 0 0;
  102. .tb {
  103. width: 250rpx;
  104. position: relative;
  105. .icon {
  106. width: 48rpx;
  107. height: 48rpx;
  108. }
  109. .tab_text {
  110. font-size: 20rpx;
  111. font-weight: 400;
  112. color: #666666;
  113. line-height: 28rpx;
  114. padding-top: 5rpx;
  115. }
  116. .tab_text2 {
  117. color: #5370FF;
  118. }
  119. .icon2 {
  120. position: absolute;
  121. top: -44rpx;
  122. left: 70rpx;
  123. width: 110rpx;
  124. height: 110rpx;
  125. }
  126. }
  127. .popu {
  128. width: 750rpx;
  129. height: 560rpx;
  130. background: #FFFFFF;
  131. border-radius: 40rpx 40rpx 0px 0px;
  132. .order_img {
  133. width: 128rpx;
  134. height: 128rpx;
  135. }
  136. .order_text {
  137. padding-top: 18rpx;
  138. font-size: 28rpx;
  139. font-weight: 400;
  140. color: #444444;
  141. line-height: 40rpx;
  142. }
  143. .close {
  144. margin-top: 140rpx;
  145. width: 56rpx;
  146. height: 56rpx;
  147. }
  148. }
  149. }
  150. </style>