新增营销系统、分销系统、会员功能、门店、提现功能

This commit is contained in:
Shaw
2024-02-08 21:01:37 +08:00
parent 68b3f2dcc3
commit 17c043348a
1398 changed files with 81279 additions and 56269 deletions

View File

@ -6,8 +6,11 @@
>
<view class="coupon-box">
<template v-if="!showEmpty">
<view class="coupon-list" v-for="item in couponList">
<view
class="coupon-list"
v-for="item in couponList">
<CouponItem
@receiveCoupon="handleGetDetail(props.id)"
:coupons="item"
:type="'get'"
/>
@ -25,7 +28,7 @@
<script setup>
import { ref, unref } from 'vue';
import { ref } from 'vue';
import { useInterface } from "@/hooks/useInterface";
import Empty from "@/components/Empty/index.vue"
import { getProductCoupon } from "@/api/coupon";
@ -41,7 +44,6 @@ const popupRef = ref(false)
const currentCoupon = ref({})
const visible = ref(false)
const showEmpty = ref(false)
const selectCouponPanel = ref(false)
const handleGetDetail = async (id) => {
@ -91,6 +93,7 @@ defineExpose({
padding: 24rpx;
box-sizing: border-box;
width: 100%;
.coupon-list {
margin-bottom: 24rpx;
}