| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="page">
- <NavBar title="用户优惠券" :showBack="true" />
- <view class="search-bar"><input class="search-input" v-model="keyword" placeholder="搜索优惠券码" placeholder-class="search-ph" @confirm="handleSearch" /></view>
- <scroll-view class="list-scroll" scroll-y @scrolltolower="loadMore">
- <view class="card-set">
- <view class="card" v-for="item in list" :key="item.id">
- <view class="card-head">
- <view class="card-left"><text class="card-name">{{ item.couponName || '优惠券' }}</text><text class="card-user">用户ID: {{ item.userId }}</text></view>
- <view class="card-amount">${{ formatMoney(item.amount || 0) }}</view>
- <view class="card-status" :class="statusClass(item.status)"><text>{{ statusText(item.status) }}</text></view>
- </view>
- <view class="card-foot"><text class="foot-time">领取: {{ item.receiveTime || '-' }}</text><text class="foot-time" v-if="item.useTime">使用: {{ item.useTime }}</text></view>
- </view>
- </view>
- <view class="load-tip" v-if="loading"><view class="dot-row"><view class="pulse-dot"></view><view class="pulse-dot"></view><view class="pulse-dot"></view></view></view>
- <view class="end-tip" v-if="!hasMore && list.length > 0"><text>没有更多了</text></view>
- <view class="empty-state" v-if="!loading && list.length === 0"><text class="empty-text">暂无数据</text></view>
- </scroll-view>
- </view>
- </template>
- <script setup lang="ts">
- import { ref, onMounted } from 'vue';
- import NavBar from '@/components/NavBar.vue';
- import { getUserCouponList } from '@/api/userCoupon';
- import { formatMoney } from '@/utils/common';
- import { DEFAULT_PAGE_SIZE } from '@/utils/constants';
- const list = ref<any[]>([]); const loading = ref(false); const hasMore = ref(true); const page = ref(1); const keyword = ref('');
- const statusText = (status: number) => ({ 0: '未使用', 1: '已使用', 2: '已过期' } as Record<number,string>)[status] || '未知';
- const statusClass = (status: number) => status === 0 ? 'on' : status === 1 ? 'used' : 'off';
- const loadData = async () => { loading.value = true; try { const params: any = { page: page.value, pageSize: DEFAULT_PAGE_SIZE }; if (keyword.value) params.couponCode = keyword.value; const res = await getUserCouponList(params); if (page.value === 1) list.value = res.list || []; else list.value = [...list.value, ...(res.list || [])]; hasMore.value = list.value.length < (res.total || 0); } catch (e) { console.error('加载用户优惠券列表失败', e); } loading.value = false; };
- const loadMore = () => { if (loading.value || !hasMore.value) return; page.value++; loadData(); };
- const handleSearch = () => { page.value = 1; hasMore.value = true; list.value = []; loadData(); };
- onMounted(() => loadData());
- </script>
- <style lang="scss" scoped>
- .page { height: 100vh; background: $bg-color-page; display: flex; flex-direction: column; padding-bottom: env(safe-area-inset-bottom); }
- .search-bar { padding: $spacing-2 $spacing-3; background: $bg-color-card; }
- .search-input { width: 100%; height: 68rpx; background: $bg-color-page; border-radius: 40rpx; padding: 0 24rpx; font-size: $font-size-base; box-sizing: border-box; }
- .search-ph { color: $text-color-muted; font-size: 26rpx; }
- .list-scroll { flex: 1; height: 0; }
- .card-set { padding: 20rpx 24rpx; display: flex; flex-direction: column; gap: 16rpx; }
- .card { background: $bg-color-card; border-radius: $radius-md; padding: 24rpx; box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.05); }
- .card-head { display: flex; justify-content: space-between; align-items: flex-start; }
- .card-left { flex: 1; min-width: 0; }
- .card-name { font-size: 30rpx; font-weight: 600; color: $text-color-primary; display: block; margin-bottom: 6rpx; }
- .card-user { font-size: 24rpx; color: $text-color-muted; display: block; }
- .card-amount { font-size: 32rpx; font-weight: 700; color: $primary-color-dark; margin: 0 24rpx; }
- .card-status { padding: 4rpx 14rpx; border-radius: 8rpx; font-size: 22rpx; font-weight: 500; flex-shrink: 0; }
- .card-status.on { background: $success-color-bg; color: $success-color; }
- .card-status.used { background: $info-color-bg; color: $info-color; }
- .card-status.off { background: $bg-color-page; color: $text-color-muted; }
- .card-foot { display: flex; gap: 24rpx; margin-top: 14rpx; padding-top: 14rpx; border-top: 1rpx solid $border-color-light; }
- .foot-time { font-size: 22rpx; color: $text-color-muted; }
- .load-tip { display: flex; justify-content: center; padding: 36rpx 0; }
- .dot-row { display: flex; gap: 8rpx; }
- .pulse-dot { width: 9rpx; height: 9rpx; background: $text-color-placeholder; border-radius: 50%; animation: pulse 1.2s ease-in-out infinite; }
- .pulse-dot:nth-child(2) { animation-delay: 0.2s; } .pulse-dot:nth-child(3) { animation-delay: 0.4s; }
- @keyframes pulse { 0%,80%,100% { transform: scale(0.5); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }
- .end-tip { text-align: center; padding: 36rpx; font-size: 24rpx; color: $text-color-muted; }
- .empty-state { display: flex; align-items: center; justify-content: center; padding: 100rpx 0; }
- .empty-text { font-size: 28rpx; color: $text-color-muted; }
- </style>
|