fix: 代客下单优化称重商品弹窗、商品列表过滤优惠券商品,部分支付按钮禁止状态优化

This commit is contained in:
2025-03-25 13:22:16 +08:00
parent efe1adfb44
commit ce9ea228f1
4 changed files with 7 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ export const useCartsStore = defineStore("carts", () => {
status: "on_sale",
...query,
});
goods.value = res.records;
goods.value = res.records.filter((v: { type: string }) => v.type != 'coupon');
setGoodsMap(goods.value)
}