custom-tab-bar.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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" :safeAreaInsetBottom="false">
  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. this.close()
  80. $api.jump(url)
  81. },
  82. toTab(index) {
  83. if(index == 1) {
  84. $api.jump('/pages/tabbar/index/index',2)
  85. } else {
  86. $api.jump('/pages/tabbar/mine/mine',2)
  87. }
  88. }
  89. }
  90. }
  91. </script>
  92. <style lang="scss" scoped>
  93. .tabbar {
  94. width: 750rpx;
  95. height: 182rpx;
  96. position: fixed;
  97. bottom: 0;
  98. z-index: 999999;
  99. background: url('/static/images/tabbar/tab_bg.png') no-repeat;
  100. background-size: 100%;
  101. box-sizing: border-box;
  102. padding: 20rpx 0 0;
  103. .tb {
  104. width: 250rpx;
  105. position: relative;
  106. .icon {
  107. width: 48rpx;
  108. height: 48rpx;
  109. }
  110. .tab_text {
  111. font-size: 20rpx;
  112. font-weight: 400;
  113. color: #666666;
  114. line-height: 28rpx;
  115. padding-top: 5rpx;
  116. }
  117. .tab_text2 {
  118. color: #5370FF;
  119. }
  120. .icon2 {
  121. position: absolute;
  122. top: -44rpx;
  123. left: 70rpx;
  124. width: 110rpx;
  125. height: 110rpx;
  126. }
  127. }
  128. .popu {
  129. width: 750rpx;
  130. height: 560rpx;
  131. background: #FFFFFF;
  132. border-radius: 40rpx 40rpx 0px 0px;
  133. .order_img {
  134. width: 128rpx;
  135. height: 128rpx;
  136. }
  137. .order_text {
  138. padding-top: 18rpx;
  139. font-size: 28rpx;
  140. font-weight: 400;
  141. color: #444444;
  142. line-height: 40rpx;
  143. }
  144. .close {
  145. margin-top: 140rpx;
  146. width: 56rpx;
  147. height: 56rpx;
  148. }
  149. }
  150. }
  151. </style>