kj-tabbar.vue 8.7 KB

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