kj-tabbar.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <view id="tabber" style="position: fixed;z-index: 1000;bottom: 0;">
  3. <view class="bottom u-flex u-row-between" v-if="value1==3">
  4. <view class="u-flex">
  5. <u-checkbox-group v-model="all" placement="column" @change="checkAll">
  6. <u-checkbox shape="circle" :name="selectall">
  7. </u-checkbox>
  8. </u-checkbox-group>
  9. <text class="all">{{i18n.selectall}}</text>
  10. </view>
  11. <view v-if="success==false" class="dle">
  12. {{i18n.delete}}
  13. </view>
  14. <view class="u-flex" v-else>
  15. <view class="">
  16. <text class="allweight">{{i18n.Grossweight}} 50kg,</text>
  17. <text class="sum">{{i18n.total}}:</text>
  18. <text class='summon'>¥</text>
  19. <text class='summon' style="font-size: 36rpx;">188</text>
  20. <text class='summon'>.34</text>
  21. </view>
  22. <view class="settle" @click="account">{{i18n.GotoResult}}</view>
  23. </view>
  24. </view>
  25. <u-tabbar :list="list" active-color="#F83224" inactive-color="#333"
  26. :value="value1">
  27. <u-tabbar-item :text="item.text" v-for="(item,idx) in list" @click="click1" :key="idx">
  28. <image style="width: 40rpx;height: 40rpx;" class="u-page__item__slot-icon" slot="inactive-icon"
  29. :src="item.iconPath"></image>
  30. <image style="width: 40rpx;height: 40rpx;" class="u-page__item__slot-icon" slot="active-icon"
  31. :src="item.selectedIconPath"></image>
  32. </u-tabbar-item>
  33. </u-tabbar>
  34. </view>
  35. </template>
  36. <script>
  37. import {
  38. mapState
  39. } from "vuex"
  40. export default {
  41. name: "kj-tabbar",
  42. props: {
  43. value1: Number
  44. },
  45. computed:{
  46. i18n(){
  47. return this.$t("index")
  48. }
  49. },
  50. data() {
  51. return {
  52. list: [{
  53. "iconPath": '../../static/express1.png',
  54. "selectedIconPath": "../../static/express2.png",
  55. "text": "跨境速递",
  56. "pagePath": "pages/express/express"
  57. },
  58. {
  59. "iconPath": "../../static/index1.png",
  60. "selectedIconPath": "../../static/index2.png",
  61. "text": "商城",
  62. "pagePath": "pages/index/index"
  63. },
  64. {
  65. "iconPath": "../../static/shop.png",
  66. "selectedIconPath": "../../static/shop.png",
  67. "text": "购",
  68. "pagePath": "pages/shopping/shopping"
  69. },
  70. {
  71. "iconPath": "../../static/cart1.png",
  72. "selectedIconPath": "../../static/cart2.png",
  73. "text": "购物车",
  74. "pagePath": "pages/cart/cart"
  75. },
  76. {
  77. "iconPath": "../../static/mine1.png",
  78. "selectedIconPath": "../../static/mine2.png",
  79. "text": "我的",
  80. "pagePath": "pages/mine/mine"
  81. }
  82. ],
  83. };
  84. },
  85. created() {
  86. // if (uni.getStorageSync('tabbar')!=1) {
  87. // this.value1 = uni.getStorageSync('tabbar')
  88. // }
  89. // const dom = uni.createSelectorQuery("#tabber")
  90. },
  91. methods: {
  92. account(){
  93. uni.navigateTo({
  94. url:'/pageA/order'
  95. })
  96. },
  97. getLabelHeight() {
  98. const dom = uni.createSelectorQuery("#tabber")
  99. console.log(dom)
  100. },
  101. // click1(e) {
  102. // this.value1 = e
  103. // console.log(e);
  104. // if (this.value1 == 4) {
  105. // uni.redirectTo({
  106. // url: '../../pages/mine/mine'
  107. // })
  108. // }
  109. // if (this.value1 == 0) {
  110. // uni.redirectTo({
  111. // url: '../../pages/express/express'
  112. // })
  113. // }
  114. // if (this.value1 == 1) {
  115. // uni.redirectTo({
  116. // url: '../../pages/index/index'
  117. // })
  118. // }
  119. // if (this.value1 == 2) {
  120. // uni.redirectTo({
  121. // url: '../../pages/shopping/shopping'
  122. // })
  123. // }
  124. // if (this.value1 == 3) {
  125. // uni.redirectTo({
  126. // url: '../../pages/cart/cart'
  127. // })
  128. // }
  129. // uni.setStorageSync('tabbar', e)
  130. // },
  131. click1(e) {
  132. console.log(e);
  133. if (e == 4) {
  134. uni.switchTab({
  135. url: '../../pages/mine/mine'
  136. })
  137. }
  138. if (e == 0) {
  139. uni.switchTab({
  140. url: '../../pages/express/express'
  141. })
  142. }
  143. if (e == 1) {
  144. uni.switchTab({
  145. url: '../../pages/index/index'
  146. })
  147. }
  148. if (e == 2) {
  149. uni.switchTab({
  150. url: '../../pages/shopping/shopping'
  151. })
  152. }
  153. if (e == 3) {
  154. uni.switchTab({
  155. url: '../../pages/cart/cart'
  156. })
  157. }
  158. // uni.setStorageSync('tabbar', e)
  159. },
  160. }
  161. // created() {},
  162. // computed: {
  163. // ...mapState(['config'])
  164. // },
  165. // watch: {
  166. // config: {
  167. // handler(val) {
  168. // if (val.report_switch == 1) {
  169. // this.list = [{
  170. // "iconPath": "/static/images/index.png",
  171. // "pagePath": "/pages/index/index",
  172. // "selectedIconPath": "/static/images/index1.png",
  173. // "text": "首页"
  174. // },
  175. // {
  176. // "iconPath": "/static/images/video.png",
  177. // "pagePath": "/pages/video/video",
  178. // "selectedIconPath": "/static/images/video1.png",
  179. // "text": "视频"
  180. // },
  181. // {
  182. // "iconPath": "/static/images/baobei.png",
  183. // "pagePath": "/pages/baobei/baobei",
  184. // "selectedIconPath": "/static/images/baobei1.png",
  185. // "text": "客户报备"
  186. // },
  187. // {
  188. // "iconPath": "/static/images/mine.png",
  189. // "pagePath": "/pages/mine/mine",
  190. // "selectedIconPath": "/static/images/mine1.png",
  191. // "text": "我的"
  192. // }
  193. // ]
  194. // }
  195. // },
  196. // deep: true
  197. // }
  198. // }
  199. }
  200. </script>
  201. <style lang="scss" scoped>
  202. .all{
  203. font-family: PingFangSC, PingFang SC;
  204. font-weight: 400;
  205. font-size: 22rpx;
  206. color: #444444;
  207. line-height: 32rpx;
  208. text-align: left;
  209. font-style: normal;
  210. }
  211. .bottom {
  212. width: 750rpx;
  213. height: 100rpx;
  214. background: #FFFFFF;
  215. padding: 0 24rpx;
  216. box-sizing: border-box;
  217. .allweight {
  218. font-family: PingFangSC, PingFang SC;
  219. font-weight: 400;
  220. font-size: 22rpx;
  221. color: #333333;
  222. line-height: 32rpx;
  223. text-align: left;
  224. font-style: normal;
  225. }
  226. .sum {
  227. font-family: PingFangSC, PingFang SC;
  228. font-weight: 400;
  229. font-size: 22rpx;
  230. color: #333333;
  231. line-height: 32rpx;
  232. text-align: left;
  233. font-style: normal;
  234. }
  235. .summon {
  236. font-family: JDZhengHT, JDZhengHT;
  237. font-weight: 400;
  238. font-size: 24rpx;
  239. color: #FF1515;
  240. line-height: 30rpx;
  241. text-align: left;
  242. font-style: normal;
  243. }
  244. .settle {
  245. width: 176rpx;
  246. height: 68rpx;
  247. background: #F83224;
  248. border-radius: 38rpx;
  249. font-family: PingFangSC, PingFang SC;
  250. font-weight: 500;
  251. font-size: 28rpx;
  252. color: #FFFFFF;
  253. line-height: 68rpx;
  254. text-align: center;
  255. font-style: normal;
  256. margin-left: 20rpx;
  257. }
  258. }
  259. </style>