kj-tabbar.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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="i18n.selectall" activeColor="#F83224">
  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 }} </text>
  17. <text class="allweight"> {{ goodsWeight }}kg,</text>
  18. <text class="sum">{{ i18n.total }}:</text>
  19. <text class="summon">¥</text>
  20. <text class="summon" style="font-size: 36rpx">{{
  21. goodsPrice.split(".")[0]
  22. }}</text>
  23. <text class="summon">.{{ goodsPrice.split(".")[1] }}</text>
  24. </view>
  25. <view class="settle" @click="account">{{ i18n.GotoResult }}</view>
  26. </view>
  27. </view>
  28. <u-tabbar :list="list" active-color="#F83224" inactive-color="#333" :value="value1">
  29. <u-tabbar-item v-for="(item, idx) in list" @click="click1" :key="idx" :text="item.text">
  30. <image style="width: 40rpx; height: 40rpx" class="u-page__item__slot-icon" slot="inactive-icon"
  31. :src="item.iconPath"></image>
  32. <image style="width: 40rpx; height: 40rpx" class="u-page__item__slot-icon" slot="active-icon"
  33. :src="item.selectedIconPath"></image>
  34. </u-tabbar-item>
  35. </u-tabbar>
  36. </view>
  37. </template>
  38. <script>
  39. import {
  40. mapState
  41. } from "vuex";
  42. export default {
  43. name: "kj-tabbar",
  44. props: {
  45. value1: {
  46. type: Number,
  47. default: 0,
  48. },
  49. goodsWeight: {
  50. type: Number,
  51. default: 0,
  52. },
  53. goodsPrice: {
  54. type: String,
  55. default: "",
  56. },
  57. //购物车所有商品
  58. goodsList: {
  59. type: Array,
  60. default: () => {
  61. return [];
  62. },
  63. },
  64. //购物车选中的商品
  65. checkboxValue1: {
  66. type: Array,
  67. default: () => {
  68. return [];
  69. },
  70. },
  71. },
  72. computed: {
  73. i18n() {
  74. return this.$t("index");
  75. },
  76. },
  77. data() {
  78. return {
  79. success: true,
  80. all: [],
  81. language: 'zh-CN',
  82. };
  83. },
  84. onLoad() {},
  85. computed: {
  86. i18n() {
  87. return this.$t('index')
  88. },
  89. list() {
  90. var list = [{
  91. iconPath: "../../static/express1.png",
  92. selectedIconPath: "../../static/express2.png",
  93. text: '跨境速递',
  94. pagePath: "pages/express/express",
  95. },
  96. {
  97. iconPath: "../../static/index1.png",
  98. selectedIconPath: "../../static/index2.png",
  99. text: "商城",
  100. pagePath: "pages/index/index",
  101. },
  102. {
  103. iconPath: "../../static/shop.png",
  104. selectedIconPath: "../../static/shop.png",
  105. text: "购",
  106. pagePath: "pages/shopping/shopping",
  107. },
  108. {
  109. iconPath: "../../static/cart1.png",
  110. selectedIconPath: "../../static/cart2.png",
  111. text: "购物车",
  112. pagePath: "pages/cart/cart",
  113. },
  114. {
  115. iconPath: "../../static/mine1.png",
  116. selectedIconPath: "../../static/mine2.png",
  117. text: "我的",
  118. pagePath: "pages/mine/mine",
  119. },
  120. ]
  121. list[0].text = this.i18n.border
  122. list[1].text = this.i18n.shop
  123. list[2].text = this.i18n.chase
  124. list[3].text = this.i18n.Shopping
  125. list[4].text = this.i18n.mine
  126. return list
  127. }
  128. },
  129. created() {
  130. if (uni.getStorageSync('language') != '') {
  131. this.language = uni.getStorageSync('language')
  132. }
  133. // if (uni.getStorageSync('tabbar')!=1) {
  134. // this.value1 = uni.getStorageSync('tabbar')
  135. // }
  136. // const dom = uni.createSelectorQuery("#tabber")
  137. },
  138. methods: {
  139. account() {
  140. console.log(this.checkboxValue1);
  141. console.log(this.goodsList);
  142. uni.navigateTo({
  143. url: "/pageA/order",
  144. });
  145. },
  146. getLabelHeight() {
  147. const dom = uni.createSelectorQuery("#tabber");
  148. console.log(dom);
  149. },
  150. // click1(e) {
  151. // this.value1 = e
  152. // console.log(e);
  153. // if (this.value1 == 4) {
  154. // uni.redirectTo({
  155. // url: '../../pages/mine/mine'
  156. // })
  157. // }
  158. // if (this.value1 == 0) {
  159. // uni.redirectTo({
  160. // url: '../../pages/express/express'
  161. // })
  162. // }
  163. // if (this.value1 == 1) {
  164. // uni.redirectTo({
  165. // url: '../../pages/index/index'
  166. // })
  167. // }
  168. // if (this.value1 == 2) {
  169. // uni.redirectTo({
  170. // url: '../../pages/shopping/shopping'
  171. // })
  172. // }
  173. // if (this.value1 == 3) {
  174. // uni.redirectTo({
  175. // url: '../../pages/cart/cart'
  176. // })
  177. // }
  178. // uni.setStorageSync('tabbar', e)
  179. // },
  180. checkAll() {
  181. this.$emit("allSelect");
  182. },
  183. //
  184. cancelAll(value) {
  185. if (value == "全选") {
  186. return this.all;
  187. } else if (value == "取消") {
  188. this.all = [];
  189. } else {
  190. this.all.push(this.i18n.selectall);
  191. }
  192. },
  193. click1(e) {
  194. if (e == 4) {
  195. uni.switchTab({
  196. url: "../../pages/mine/mine",
  197. });
  198. }
  199. if (e == 0) {
  200. uni.switchTab({
  201. url: "../../pages/express/express",
  202. });
  203. }
  204. if (e == 1) {
  205. uni.switchTab({
  206. url: "../../pages/index/index",
  207. });
  208. }
  209. if (e == 2) {
  210. uni.switchTab({
  211. url: "../../pages/shopping/shopping",
  212. });
  213. }
  214. if (e == 3) {
  215. uni.switchTab({
  216. url: "../../pages/cart/cart",
  217. });
  218. }
  219. // uni.setStorageSync('tabbar', e)
  220. },
  221. },
  222. // created() {},
  223. // computed: {
  224. // ...mapState(['config'])
  225. // },
  226. // watch: {
  227. // config: {
  228. // handler(val) {
  229. // if (val.report_switch == 1) {
  230. // this.list = [{
  231. // "iconPath": "/static/images/index.png",
  232. // "pagePath": "/pages/index/index",
  233. // "selectedIconPath": "/static/images/index1.png",
  234. // "text": "首页"
  235. // },
  236. // {
  237. // "iconPath": "/static/images/video.png",
  238. // "pagePath": "/pages/video/video",
  239. // "selectedIconPath": "/static/images/video1.png",
  240. // "text": "视频"
  241. // },
  242. // {
  243. // "iconPath": "/static/images/baobei.png",
  244. // "pagePath": "/pages/baobei/baobei",
  245. // "selectedIconPath": "/static/images/baobei1.png",
  246. // "text": "客户报备"
  247. // },
  248. // {
  249. // "iconPath": "/static/images/mine.png",
  250. // "pagePath": "/pages/mine/mine",
  251. // "selectedIconPath": "/static/images/mine1.png",
  252. // "text": "我的"
  253. // }
  254. // ]
  255. // }
  256. // },
  257. // deep: true
  258. // }
  259. // }
  260. };
  261. </script>
  262. <style lang="scss" scoped>
  263. .all {
  264. font-family: PingFangSC, PingFang SC;
  265. font-weight: 400;
  266. font-size: 22rpx;
  267. color: #444444;
  268. line-height: 32rpx;
  269. text-align: left;
  270. font-style: normal;
  271. }
  272. .bottom {
  273. width: 750rpx;
  274. height: 100rpx;
  275. background: #ffffff;
  276. padding: 0 24rpx;
  277. box-sizing: border-box;
  278. .allweight {
  279. font-family: PingFangSC, PingFang SC;
  280. font-weight: 400;
  281. font-size: 22rpx;
  282. color: #333333;
  283. line-height: 32rpx;
  284. text-align: left;
  285. font-style: normal;
  286. }
  287. .sum {
  288. font-family: PingFangSC, PingFang SC;
  289. font-weight: 400;
  290. font-size: 22rpx;
  291. color: #333333;
  292. line-height: 32rpx;
  293. text-align: left;
  294. font-style: normal;
  295. }
  296. .summon {
  297. font-family: JDZhengHT, JDZhengHT;
  298. font-weight: 400;
  299. font-size: 24rpx;
  300. color: #ff1515;
  301. line-height: 30rpx;
  302. text-align: left;
  303. font-style: normal;
  304. }
  305. .settle {
  306. width: 176rpx;
  307. height: 68rpx;
  308. background: #f83224;
  309. border-radius: 38rpx;
  310. font-family: PingFangSC, PingFang SC;
  311. font-weight: 500;
  312. font-size: 28rpx;
  313. color: #ffffff;
  314. line-height: 68rpx;
  315. text-align: center;
  316. font-style: normal;
  317. margin-left: 20rpx;
  318. }
  319. }
  320. </style>