cart.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. import { defineStore } from 'pinia';
  2. import CartApi from '@/sheep/api/trade/cart';
  3. const cart = defineStore({
  4. id: 'cart',
  5. state: () => ({
  6. shopNameMap:[],
  7. shopSkuMap:[],
  8. list: [], // 购物车列表
  9. selectedIds: [], // 已选列表
  10. isAllSelected: false, // 是否全选
  11. totalPriceSelected: 0, // 选中项总金额
  12. }),
  13. actions: {
  14. // 获取购物车列表
  15. async getList() {
  16. const { data, code } = await CartApi.getCartList();
  17. if (code === 0) {
  18. this.list = data.validList
  19. this.shopSkuMap = data.shopSkuMap
  20. this.shopNameMap = data.shopNameMap
  21. // 计算各种关联属性
  22. this.selectedIds = [];
  23. this.isAllSelected = true;
  24. this.totalPriceSelected = 0;
  25. this.list.forEach((item) => {
  26. if (item.selected) {
  27. this.selectedIds.push(item.id);
  28. this.totalPriceSelected += item.count * item.sku.price;
  29. } else {
  30. this.isAllSelected = false;
  31. }
  32. });
  33. }
  34. },
  35. // 添加购物车
  36. async add(goodsInfo) {
  37. // 添加购物项
  38. const { code } = await CartApi.addCart({
  39. skuId: goodsInfo.id,
  40. count: goodsInfo.goods_num,
  41. });
  42. // 刷新购物车列表
  43. if (code === 0) {
  44. await this.getList();
  45. }
  46. },
  47. // 更新购物车
  48. async update(goodsInfo) {
  49. const { code } = await CartApi.updateCartCount({
  50. id: goodsInfo.goods_id,
  51. count: goodsInfo.goods_num,
  52. });
  53. if (code === 0) {
  54. await this.getList();
  55. }
  56. },
  57. // 移除购物车
  58. async delete(ids) {
  59. // console.log(ids)
  60. if(typeof ids === 'number'){
  61. const { code } = await CartApi.deleteCart(ids);
  62. }else{
  63. const { code } = await CartApi.deleteCart(ids.join(','));
  64. }
  65. await this.getList();
  66. },
  67. // 单选购物车商品
  68. async selectSingle(goodsId) {
  69. const { code } = await CartApi.updateCartSelected({
  70. ids: [goodsId],
  71. selected: !this.selectedIds.includes(goodsId), // 取反
  72. });
  73. if (code === 0) {
  74. await this.getList();
  75. }
  76. },
  77. // 全选购物车商品
  78. async selectAll(flag) {
  79. const { code } = await CartApi.updateCartSelected({
  80. ids: this.list.map((item) => item.id),
  81. selected: flag
  82. });
  83. if (code === 0) {
  84. await this.getList();
  85. }
  86. },
  87. // 清空购物车。注意,仅用于用户退出时,重置数据
  88. emptyList() {
  89. this.list = [];
  90. this.selectedIds = [];
  91. this.isAllSelected = true;
  92. this.totalPriceSelected = 0;
  93. },
  94. },
  95. persist: {
  96. enabled: true,
  97. strategies: [
  98. {
  99. key: 'cart-store',
  100. },
  101. ],
  102. },
  103. });
  104. export default cart;