新增营销系统、分销系统、会员功能、门店、提现功能
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user