kj-tabbar.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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. all:''
  84. };
  85. },
  86. created() {
  87. // if (uni.getStorageSync('tabbar')!=1) {
  88. // this.value1 = uni.getStorageSync('tabbar')
  89. // }
  90. // const dom = uni.createSelectorQuery("#tabber")
  91. },
  92. methods: {
  93. account(){
  94. uni.navigateTo({
  95. url:'/pageA/order'
  96. })
  97. },
  98. getLabelHeight() {
  99. const dom = uni.createSelectorQuery("#tabber")
  100. console.log(dom)
  101. },
  102. // click1(e) {
  103. // this.value1 = e
  104. // console.log(e);
  105. // if (this.value1 == 4) {
  106. // uni.redirectTo({
  107. // url: '../../pages/mine/mine'
  108. // })
  109. // }
  110. // if (this.value1 == 0) {
  111. // uni.redirectTo({
  112. // url: '../../pages/express/express'
  113. // })
  114. // }
  115. // if (this.value1 == 1) {
  116. // uni.redirectTo({
  117. // url: '../../pages/index/index'
  118. // })
  119. // }
  120. // if (this.value1 == 2) {
  121. // uni.redirectTo({
  122. // url: '../../pages/shopping/shopping'
  123. // })
  124. // }
  125. // if (this.value1 == 3) {
  126. // uni.redirectTo({
  127. // url: '../../pages/cart/cart'
  128. // })
  129. // }
  130. // uni.setStorageSync('tabbar', e)
  131. // },
  132. click1(e) {
  133. console.log(e);
  134. if (e == 4) {
  135. uni.switchTab({
  136. url: '../../pages/mine/mine'
  137. })
  138. }
  139. if (e == 0) {
  140. uni.switchTab({
  141. url: '../../pages/express/express'
  142. })
  143. }
  144. if (e == 1) {
  145. uni.switchTab({
  146. url: '../../pages/index/index'
  147. })
  148. }
  149. if (e == 2) {
  150. uni.switchTab({
  151. url: '../../pages/shopping/shopping'
  152. })
  153. }
  154. if (e == 3) {
  155. uni.switchTab({
  156. url: '../../pages/cart/cart'
  157. })
  158. }
  159. // uni.setStorageSync('tabbar', e)
  160. },
  161. }
  162. // created() {},
  163. // computed: {
  164. // ...mapState(['config'])
  165. // },
  166. // watch: {
  167. // config: {
  168. // handler(val) {
  169. // if (val.report_switch == 1) {
  170. // this.list = [{
  171. // "iconPath": "/static/images/index.png",
  172. // "pagePath": "/pages/index/index",
  173. // "selectedIconPath": "/static/images/index1.png",
  174. // "text": "首页"
  175. // },
  176. // {
  177. // "iconPath": "/static/images/video.png",
  178. // "pagePath": "/pages/video/video",
  179. // "selectedIconPath": "/static/images/video1.png",
  180. // "text": "视频"
  181. // },
  182. // {
  183. // "iconPath": "/static/images/baobei.png",
  184. // "pagePath": "/pages/baobei/baobei",
  185. // "selectedIconPath": "/static/images/baobei1.png",
  186. // "text": "客户报备"
  187. // },
  188. // {
  189. // "iconPath": "/static/images/mine.png",
  190. // "pagePath": "/pages/mine/mine",
  191. // "selectedIconPath": "/static/images/mine1.png",
  192. // "text": "我的"
  193. // }
  194. // ]
  195. // }
  196. // },
  197. // deep: true
  198. // }
  199. // }
  200. }
  201. </script>
  202. <style lang="scss" scoped>
  203. .all{
  204. font-family: PingFangSC, PingFang SC;
  205. font-weight: 400;
  206. font-size: 22rpx;
  207. color: #444444;
  208. line-height: 32rpx;
  209. text-align: left;
  210. font-style: normal;
  211. }
  212. .bottom {
  213. width: 750rpx;
  214. height: 100rpx;
  215. background: #FFFFFF;
  216. padding: 0 24rpx;
  217. box-sizing: border-box;
  218. .allweight {
  219. font-family: PingFangSC, PingFang SC;
  220. font-weight: 400;
  221. font-size: 22rpx;
  222. color: #333333;
  223. line-height: 32rpx;
  224. text-align: left;
  225. font-style: normal;
  226. }
  227. .sum {
  228. font-family: PingFangSC, PingFang SC;
  229. font-weight: 400;
  230. font-size: 22rpx;
  231. color: #333333;
  232. line-height: 32rpx;
  233. text-align: left;
  234. font-style: normal;
  235. }
  236. .summon {
  237. font-family: JDZhengHT, JDZhengHT;
  238. font-weight: 400;
  239. font-size: 24rpx;
  240. color: #FF1515;
  241. line-height: 30rpx;
  242. text-align: left;
  243. font-style: normal;
  244. }
  245. .settle {
  246. width: 176rpx;
  247. height: 68rpx;
  248. background: #F83224;
  249. border-radius: 38rpx;
  250. font-family: PingFangSC, PingFang SC;
  251. font-weight: 500;
  252. font-size: 28rpx;
  253. color: #FFFFFF;
  254. line-height: 68rpx;
  255. text-align: center;
  256. font-style: normal;
  257. margin-left: 20rpx;
  258. }
  259. }
  260. </style>