cart.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. const { code } = await CartApi.deleteCart(ids.join(','));
  60. if (code === 0) {
  61. await this.getList();
  62. }
  63. },
  64. // 单选购物车商品
  65. async selectSingle(goodsId) {
  66. const { code } = await CartApi.updateCartSelected({
  67. ids: [goodsId],
  68. selected: !this.selectedIds.includes(goodsId), // 取反
  69. });
  70. if (code === 0) {
  71. await this.getList();
  72. }
  73. },
  74. // 全选购物车商品
  75. async selectAll(flag) {
  76. const { code } = await CartApi.updateCartSelected({
  77. ids: this.list.map((item) => item.id),
  78. selected: flag
  79. });
  80. if (code === 0) {
  81. await this.getList();
  82. }
  83. },
  84. // 清空购物车。注意,仅用于用户退出时,重置数据
  85. emptyList() {
  86. this.list = [];
  87. this.selectedIds = [];
  88. this.isAllSelected = true;
  89. this.totalPriceSelected = 0;
  90. },
  91. },
  92. persist: {
  93. enabled: true,
  94. strategies: [
  95. {
  96. key: 'cart-store',
  97. },
  98. ],
  99. },
  100. });
  101. export default cart;