购物车逻辑完善

个人信息存储优化
团购支付
This commit is contained in:
2024-03-31 17:22:14 +08:00
parent 1fc0aa432b
commit b502385272
19 changed files with 859 additions and 141 deletions

View File

@@ -11,11 +11,12 @@ import CouponItem from './components/coupon-item.vue';
import { getCouponList } from '@/api/user';
import { useUserStore } from '@/store';
import { getCompanyId } from '@/utils';
import { GroupBuyBean } from '@/api/groupbuy/types';
const store = useUserStore();
const { userInfo } = storeToRefs(store);
const coupons = ref([]);
const coupons = ref<GroupBuyBean[]>([]);
onLoad(async () => {
fetchData(0);