kj-tabbar.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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" class="dle" @click="$emit('selectDelete')">
  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. nextTick
  41. } from "vue";
  42. import {
  43. mapState
  44. } from "vuex";
  45. export default {
  46. name: "kj-tabbar",
  47. props: {
  48. value1: {
  49. type: Number,
  50. default: 0,
  51. },
  52. goodsWeight: {
  53. type: Number,
  54. default: 0,
  55. },
  56. goodsPrice: {
  57. type: String,
  58. default: "",
  59. },
  60. //购物车所有商品
  61. goodsList: {
  62. type: Array,
  63. default: () => {
  64. return [];
  65. },
  66. },
  67. //购物车选中的商品
  68. checkboxValue1: {
  69. type: Array,
  70. default: () => {
  71. return [];
  72. },
  73. },
  74. success: {
  75. type: Boolean,
  76. default: true,
  77. },
  78. },
  79. computed: {
  80. i18n() {
  81. return this.$t("index");
  82. },
  83. },
  84. data() {
  85. return {
  86. all: [],
  87. language: "zh-CN",
  88. selegoods: [],
  89. stringcheck: [],
  90. skuitemid: [],
  91. volume: '',
  92. cartid: [],
  93. ten_yuan_image:''
  94. };
  95. },
  96. computed: {
  97. i18n() {
  98. return this.$t("index");
  99. },
  100. list() {
  101. var list = [{
  102. iconPath: "../../static/express1.png",
  103. selectedIconPath: "../../static/express2.png",
  104. text: "跨境速递",
  105. pagePath: "pages/express/express",
  106. },
  107. {
  108. iconPath: "../../static/index1.png",
  109. selectedIconPath: "../../static/index2.png",
  110. text: "商城",
  111. pagePath: "pages/index/index",
  112. },
  113. {
  114. iconPath: "../../static/shop.png",
  115. selectedIconPath: "../../static/shop.png",
  116. text: "购",
  117. pagePath: "pages/shopping/shopping",
  118. },
  119. {
  120. iconPath: "../../static/cart1.png",
  121. selectedIconPath: "../../static/cart2.png",
  122. text: "购物车",
  123. pagePath: "pages/cart/cart",
  124. },
  125. {
  126. iconPath: "../../static/mine1.png",
  127. selectedIconPath: "../../static/mine2.png",
  128. text: "我的",
  129. pagePath: "pages/mine/mine",
  130. },
  131. ];
  132. list[2].iconPath = this.ten_yuan_image
  133. list[2].selectedIconPath = this.ten_yuan_image
  134. list[0].text = this.i18n.border;
  135. list[1].text = this.i18n.shop;
  136. list[2].text = this.i18n.chase;
  137. list[3].text = this.i18n.Shopping;
  138. list[4].text = this.i18n.mine;
  139. return list;
  140. },
  141. },
  142. created() {
  143. this.all = []
  144. if (uni.getStorageSync("language") != "") {
  145. this.language = uni.getStorageSync("language");
  146. }
  147. this.getimage()
  148. // if (uni.getStorageSync('tabbar')!=1) {
  149. // this.value1 = uni.getStorageSync('tabbar')
  150. // }
  151. // const dom = uni.createSelectorQuery("#tabber")
  152. },
  153. methods: {
  154. getimage() {
  155. uni.$u.http.get('/api/config', {
  156. params: {
  157. module: 'basic'
  158. }
  159. }).then((res) => {
  160. this.ten_yuan_image = res.ten_yuan_image
  161. }).catch(() => {
  162. })
  163. },
  164. account() {
  165. if (this.checkboxValue1.length == 0) {
  166. this.$u.toast('请选择商品')
  167. } else {
  168. console.log(this.checkboxValue1);
  169. console.log(this.goodsList);
  170. this.selegoods = [];
  171. this.skuitemid = []
  172. this.cartid = []
  173. this.goodsList.map((item) => {
  174. item.goods.map((items) => {
  175. console.log('items', items);
  176. if (this.checkboxValue1.indexOf(items.cart.id) > -1) {
  177. this.selegoods = this.selegoods.concat(items);
  178. this.stringcheck = this.stringcheck.concat(items.cart.id);
  179. this.skuitemid = this.skuitemid.concat(items.cart.sku_item_id);
  180. // if (items.is_shipping == 1 && item.goods.length>1) {
  181. this.cartid = this.cartid.concat(items.cart.id);
  182. }
  183. });
  184. });
  185. uni.$u.http
  186. .get(`/api/order_goods_volume?sku_item_id=` + this.skuitemid.toString(), {
  187. })
  188. .then((res) => {
  189. console.log('weight', res);
  190. this.volume = res
  191. });
  192. this.$nextTick(() => {
  193. uni.navigateTo({
  194. url: "/pageA/order?selelist=" +
  195. encodeURIComponent(JSON.stringify(this.selegoods)) +
  196. "&typea=" +
  197. "shop" +
  198. "&goodsPrice=" +
  199. this.goodsPrice +
  200. "&goodsWeight=" +
  201. this.goodsWeight +
  202. "&stringcheck=" +
  203. this.stringcheck.toString() + '&volume=' + this.volume + '&cartid=' + this
  204. .cartid.join(',')
  205. });
  206. });
  207. }
  208. },
  209. getLabelHeight() {
  210. const dom = uni.createSelectorQuery("#tabber");
  211. console.log(dom);
  212. },
  213. // click1(e) {
  214. // this.value1 = e
  215. // console.log(e);
  216. // if (this.value1 == 4) {
  217. // uni.redirectTo({
  218. // url: '../../pages/mine/mine'
  219. // })
  220. // }
  221. // if (this.value1 == 0) {
  222. // uni.redirectTo({
  223. // url: '../../pages/express/express'
  224. // })
  225. // }
  226. // if (this.value1 == 1) {
  227. // uni.redirectTo({
  228. // url: '../../pages/index/index'
  229. // })
  230. // }
  231. // if (this.value1 == 2) {
  232. // uni.redirectTo({
  233. // url: '../../pages/shopping/shopping'
  234. // })
  235. // }
  236. // if (this.value1 == 3) {
  237. // uni.redirectTo({
  238. // url: '../../pages/cart/cart'
  239. // })
  240. // }
  241. // uni.setStorageSync('tabbar', e)
  242. // },
  243. checkAll() {
  244. this.$emit("allSelect");
  245. },
  246. //
  247. cancelAll(value) {
  248. if (value == "全选") {
  249. return this.all;
  250. } else if (value == "取消") {
  251. this.all = [];
  252. } else {
  253. this.all.push(this.i18n.selectall);
  254. }
  255. },
  256. click1(e) {
  257. if (e == 4) {
  258. uni.switchTab({
  259. url: "../../pages/mine/mine",
  260. });
  261. }
  262. if (e == 0) {
  263. uni.switchTab({
  264. url: "../../pages/express/express",
  265. });
  266. }
  267. if (e == 1) {
  268. uni.switchTab({
  269. url: "../../pages/index/index",
  270. });
  271. }
  272. if (e == 2) {
  273. uni.switchTab({
  274. url: "../../pages/shopping/shopping",
  275. });
  276. }
  277. if (e == 3) {
  278. uni.switchTab({
  279. url: "../../pages/cart/cart",
  280. });
  281. }
  282. // uni.setStorageSync('tabbar', e)
  283. },
  284. },
  285. // created() {},
  286. // computed: {
  287. // ...mapState(['config'])
  288. // },
  289. // watch: {
  290. // config: {
  291. // handler(val) {
  292. // if (val.report_switch == 1) {
  293. // this.list = [{
  294. // "iconPath": "/static/images/index.png",
  295. // "pagePath": "/pages/index/index",
  296. // "selectedIconPath": "/static/images/index1.png",
  297. // "text": "首页"
  298. // },
  299. // {
  300. // "iconPath": "/static/images/video.png",
  301. // "pagePath": "/pages/video/video",
  302. // "selectedIconPath": "/static/images/video1.png",
  303. // "text": "视频"
  304. // },
  305. // {
  306. // "iconPath": "/static/images/baobei.png",
  307. // "pagePath": "/pages/baobei/baobei",
  308. // "selectedIconPath": "/static/images/baobei1.png",
  309. // "text": "客户报备"
  310. // },
  311. // {
  312. // "iconPath": "/static/images/mine.png",
  313. // "pagePath": "/pages/mine/mine",
  314. // "selectedIconPath": "/static/images/mine1.png",
  315. // "text": "我的"
  316. // }
  317. // ]
  318. // }
  319. // },
  320. // deep: true
  321. // }
  322. // }
  323. };
  324. </script>
  325. <style lang="scss" scoped>
  326. .all {
  327. font-family: PingFangSC, PingFang SC;
  328. font-weight: 400;
  329. font-size: 22rpx;
  330. color: #444444;
  331. line-height: 32rpx;
  332. text-align: left;
  333. font-style: normal;
  334. }
  335. .bottom {
  336. width: 750rpx;
  337. height: 100rpx;
  338. background: #ffffff;
  339. padding: 0 24rpx;
  340. box-sizing: border-box;
  341. .dle {
  342. width: 136rpx;
  343. height: 60rpx;
  344. text-align: center;
  345. line-height: 60rpx;
  346. border-radius: 38rpx;
  347. border: 2rpx solid rgba(151, 151, 151, 1);
  348. font-size: 26rpx;
  349. color: rgba(51, 51, 51, 1);
  350. }
  351. .allweight {
  352. font-family: PingFangSC, PingFang SC;
  353. font-weight: 400;
  354. font-size: 22rpx;
  355. color: #333333;
  356. line-height: 32rpx;
  357. text-align: left;
  358. font-style: normal;
  359. }
  360. .sum {
  361. font-family: PingFangSC, PingFang SC;
  362. font-weight: 400;
  363. font-size: 22rpx;
  364. color: #333333;
  365. line-height: 32rpx;
  366. text-align: left;
  367. font-style: normal;
  368. }
  369. .summon {
  370. font-family: JDZhengHT, JDZhengHT;
  371. font-weight: 400;
  372. font-size: 24rpx;
  373. color: #ff1515;
  374. line-height: 30rpx;
  375. text-align: left;
  376. font-style: normal;
  377. }
  378. .settle {
  379. width: 176rpx;
  380. height: 68rpx;
  381. background: #f83224;
  382. border-radius: 38rpx;
  383. font-family: PingFangSC, PingFang SC;
  384. font-weight: 500;
  385. font-size: 28rpx;
  386. color: #ffffff;
  387. line-height: 68rpx;
  388. text-align: center;
  389. font-style: normal;
  390. margin-left: 20rpx;
  391. }
  392. }
  393. </style>