新增营销系统、分销系统、会员功能、门店、提现功能
This commit is contained in:
@ -6,12 +6,7 @@
|
||||
@update: 2023-10-31 11:05
|
||||
-->
|
||||
<script setup>
|
||||
import { ref } from 'vue'
|
||||
import { onLoad } from '@dcloudio/uni-app'
|
||||
import { useRouter } from "@/hooks/useRouter";
|
||||
|
||||
const {goBack} = useRouter();
|
||||
const {scrollTop} = useScroll()
|
||||
import { useDiscountCoupon } from "@/pages/discountCoupon/index.utils";
|
||||
import CouponItem from "@/pages/discountCoupon/components/CouponItem.vue";
|
||||
import Empty from "@/components/Empty/index.vue"
|
||||
@ -19,6 +14,9 @@ import { emptyCouponIcon } from "@/utils/images";
|
||||
import ReturnTop from "@/components/ReturnTop/index.vue";
|
||||
import { useScroll } from "@/hooks/useScroll";
|
||||
|
||||
const {goBack} = useRouter();
|
||||
const {scrollTop} = useScroll()
|
||||
|
||||
const {
|
||||
tabList,
|
||||
tabCurrent,
|
||||
@ -45,7 +43,9 @@ const {
|
||||
<!-- coupon list -->
|
||||
<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
|
||||
:coupons="item"
|
||||
:tabType="tabCurrent"
|
||||
@ -80,6 +80,7 @@ const {
|
||||
padding: 35rpx;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
|
||||
.coupon-list {
|
||||
margin-bottom: 24rpx;
|
||||
}
|
||||
|
Reference in New Issue
Block a user