This commit is contained in:
2026-02-12 21:03:53 +08:00
parent 414d3334fd
commit bbb8f3bbaf
20 changed files with 11277 additions and 235 deletions

View File

@@ -30,14 +30,27 @@
"three": "^0.182.0"
},
"devDependencies": {
"@ant-design/icons": "^6.1.0",
"@eslint/js": "^9.39.1",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^10.2.8",
"@storybook/react-vite": "^10.2.8",
"@storybook/test": "^8.6.15",
"@tanstack/react-query": "^5.90.21",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"canvas-confetti": "^1.9.4",
"classnames": "^2.5.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"vite": "^7.2.4"
"less": "^4.5.1",
"storybook": "^10.2.8",
"vite": "^7.2.4",
"vite-plugin-imagemin": "^0.6.1"
}
}

10421
frontend/pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

35
frontend/src/animation.js Normal file
View File

@@ -0,0 +1,35 @@
export const fadeInUp = {
initial: { opacity: 0, y: 30 },
animate: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" } },
exit: { opacity: 0, y: 20, transition: { duration: 0.4 } }
};
export const staggerContainer = {
hidden: { opacity: 0 },
show: {
opacity: 1,
transition: {
staggerChildren: 0.08
}
}
};
export const cardHover = {
hover: {
scale: 1.03,
boxShadow: "0 20px 40px rgba(0,0,0,0.4)",
y: -5,
transition: { duration: 0.3, ease: "easeOut" }
}
};
export const buttonClick = {
tap: { scale: 0.95 }
};
export const pageTransition = {
initial: { opacity: 0 },
animate: { opacity: 1 },
exit: { opacity: 0 },
transition: { duration: 0.4 }
};

View File

@@ -65,5 +65,7 @@ export const uploadMedia = (data) => {
export const getStarUsers = () => api.get('/users/stars/');
export const getMyPaidItems = () => api.get('/users/paid-items/');
export const getAnnouncements = () => api.get('/community/announcements/');
export const getActivities = () => api.get('/community/activities/');
export const getActivityDetail = (id) => api.get(`/community/activities/${id}/`);
export default api;

View File

@@ -0,0 +1,244 @@
@import '../../styles/theme.less';
.container {
padding: 24px 0;
max-width: 1200px;
margin: 0 auto;
}
.sectionHeader {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
padding: 0 24px;
.sectionTitle {
font-size: 24px;
font-weight: bold;
color: @text-color;
letter-spacing: 1px;
}
.moreBtn {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
color: @primary-color;
transition: all 0.3s;
&:hover {
color: lighten(@primary-color, 10%);
transform: translateX(4px);
}
}
}
.card {
position: relative;
border-radius: @border-radius-base;
overflow: hidden;
aspect-ratio: 16/9;
cursor: pointer;
background: @card-bg;
border: 1px solid rgba(255, 255, 255, 0.1);
@media (max-width: 768px) {
aspect-ratio: 3/4;
}
.image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 60%;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 24px;
}
.status {
display: inline-block;
padding: 4px 12px;
background: @primary-color;
color: #000;
font-size: 12px;
font-weight: bold;
border-radius: 4px;
margin-bottom: 8px;
width: fit-content;
}
.title {
font-size: 24px;
font-weight: bold;
color: @text-color;
margin-bottom: 8px;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.time {
font-size: 14px;
color: @text-secondary;
}
&:hover {
.image {
transform: scale(1.05);
}
}
}
// Detail Page
.detailContainer {
min-height: 100vh;
background: @bg-color;
color: @text-color;
padding-bottom: 80px;
}
.heroSection {
position: relative;
height: 50vh;
width: 100%;
overflow: hidden;
.heroImage {
width: 100%;
height: 100%;
object-fit: cover;
}
.backBtn {
position: absolute;
top: 24px;
left: 24px;
z-index: 10;
background: rgba(0,0,0,0.5);
border: none;
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
backdrop-filter: blur(4px);
&:hover {
background: rgba(0,0,0,0.7);
}
}
}
.contentSection {
padding: 24px;
max-width: 800px;
margin: 0 auto;
margin-top: -60px;
position: relative;
z-index: 2;
background: rgba(30, 30, 30, 0.8);
backdrop-filter: blur(20px);
border-radius: 24px 24px 0 0;
border-top: 1px solid rgba(255,255,255,0.1);
}
.metaInfo {
margin-bottom: 32px;
h1 {
font-size: 32px;
margin-bottom: 16px;
color: @text-color;
}
}
.infoRow {
display: flex;
gap: 24px;
margin-bottom: 16px;
color: @text-secondary;
.icon {
margin-right: 8px;
color: @primary-color;
}
}
.richText {
line-height: 1.8;
color: #ddd;
font-size: 16px;
img {
max-width: 100%;
border-radius: 8px;
margin: 16px 0;
}
h2, h3 {
color: @text-color;
margin-top: 24px;
margin-bottom: 16px;
}
}
.bottomBar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 16px 24px;
background: rgba(20, 20, 20, 0.9);
backdrop-filter: blur(10px);
border-top: 1px solid rgba(255,255,255,0.1);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
.actionBtn {
flex: 1;
margin-left: 16px;
height: 48px;
font-size: 16px;
font-weight: bold;
border: none;
background: @primary-color;
box-shadow: 0 4px 12px rgba(0, 185, 107, 0.3);
&:hover {
background: lighten(@primary-color, 5%);
}
}
.shareBtn {
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid rgba(255,255,255,0.2);
display: flex;
align-items: center;
justify-content: center;
color: white;
background: transparent;
cursor: pointer;
&:hover {
background: rgba(255,255,255,0.1);
}
}
}

View File

@@ -0,0 +1,42 @@
import React from 'react';
import { motion } from 'framer-motion';
import { Typography } from 'antd';
import { CalendarOutlined } from '@ant-design/icons';
import { cardHover } from '../../animation';
import styles from './activity.module.less';
const { Text } = Typography;
const ActivityCard = ({ activity, onClick, layoutId }) => {
const { title, start_time, display_banner_url, banner_url, cover_image, status = '报名中' } = activity;
const imageUrl = display_banner_url || banner_url || cover_image || 'https://via.placeholder.com/600x300';
return (
<motion.div
className={styles.card}
variants={cardHover}
whileHover="hover"
onClick={onClick}
layoutId={layoutId}
>
<motion.img
src={imageUrl}
alt={title}
className={styles.image}
loading="lazy"
/>
<div className={styles.overlay}>
<div className={styles.info}>
<span className={styles.status}>{status}</span>
<h3 className={styles.title}>{title}</h3>
<div className={styles.time}>
<CalendarOutlined style={{ marginRight: 8 }} />
{start_time ? start_time.split('T')[0] : 'TBD'}
</div>
</div>
</div>
</motion.div>
);
};
export default ActivityCard;

View File

@@ -0,0 +1,72 @@
import React from 'react';
import { useQuery } from '@tanstack/react-query';
import { Carousel } from 'antd';
import { useNavigate } from 'react-router-dom';
import { RightOutlined } from '@ant-design/icons';
import { getActivities } from '../../api';
import ActivityCard from './ActivityCard';
import styles from './activity.module.less';
import { motion } from 'framer-motion';
import { fadeInUp } from '../../animation';
const ActivityList = () => {
const navigate = useNavigate();
const { data: activities, isLoading } = useQuery({
queryKey: ['activities'],
queryFn: async () => {
try {
const res = await getActivities();
return Array.isArray(res) ? res : (res?.results || res?.data || []);
} catch (e) {
console.error("Failed to fetch activities", e);
return [];
}
},
staleTime: 1000 * 60 * 5, // Cache for 5 mins
});
if (isLoading || !activities || activities.length === 0) return null;
const goToDetail = (id) => {
navigate(`/activity/${id}`);
};
return (
<motion.div
className={styles.container}
initial="initial"
whileInView="animate"
viewport={{ once: true, margin: "-100px" }}
variants={fadeInUp}
>
<div className={styles.sectionHeader}>
<div className={styles.sectionTitle}>近期活动 / EVENTS</div>
<div className={styles.moreBtn} onClick={() => navigate('/activity/list')}>
<span>MORE</span>
<RightOutlined />
</div>
</div>
<Carousel
autoplay
autoplaySpeed={5000}
effect="scrollx"
slidesToShow={1}
dots={true}
className={styles.carousel}
>
{activities.map(item => (
<div key={item.id} className={styles.slideItem}>
<ActivityCard
activity={item}
onClick={() => goToDetail(item.id)}
layoutId={`activity-${item.id}`}
/>
</div>
))}
</Carousel>
</motion.div>
);
};
export default ActivityList;

View File

@@ -1,10 +1,15 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import './index.css'
import App from './App.jsx'
const queryClient = new QueryClient()
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
<QueryClientProvider client={queryClient}>
<App />
</QueryClientProvider>
</StrictMode>,
)

View File

@@ -1,31 +1,28 @@
import React, { useState, useEffect } from 'react';
import { Form, Input, Button, Card, List, Tag, Typography, message, Space, Statistic, Divider, Modal, Descriptions } from 'antd';
import { MobileOutlined, LockOutlined, SearchOutlined, CarOutlined, InboxOutlined, SafetyCertificateOutlined, CheckCircleOutlined, ClockCircleOutlined, CloseCircleOutlined, UserOutlined, EnvironmentOutlined, PhoneOutlined } from '@ant-design/icons';
import { queryMyOrders } from '../api';
import { Form, Input, Button, Card, List, Tag, Typography, message, Space, Statistic, Divider, Modal, Descriptions, Tabs } from 'antd';
import { MobileOutlined, LockOutlined, SearchOutlined, CarOutlined, InboxOutlined, SafetyCertificateOutlined, CheckCircleOutlined, ClockCircleOutlined, CloseCircleOutlined, UserOutlined, EnvironmentOutlined, PhoneOutlined, CalendarOutlined } from '@ant-design/icons';
import { queryMyOrders, getMySignups } from '../api';
import { motion } from 'framer-motion';
import LoginModal from '../components/LoginModal';
import { useAuth } from '../context/AuthContext';
import { useNavigate } from 'react-router-dom';
const { Title, Text, Paragraph } = Typography;
const MyOrders = () => {
const [loading, setLoading] = useState(false);
const [orders, setOrders] = useState([]);
const [activities, setActivities] = useState([]);
const [modalVisible, setModalVisible] = useState(false);
const [currentOrder, setCurrentOrder] = useState(null);
const [loginVisible, setLoginVisible] = useState(false);
const navigate = useNavigate();
const { user, login } = useAuth();
useEffect(() => {
if (user) {
// 如果已登录,自动查询订单
if (user.phone_number) {
handleQueryOrders(user.phone_number);
}
} else {
// Don't auto-show login modal on mount if not logged in, just show the "Please login" UI
// setLoginVisible(true);
handleQueryData();
}
}, [user]);
@@ -34,36 +31,25 @@ const MyOrders = () => {
setModalVisible(true);
};
const handleQueryOrders = async (phone) => {
const handleQueryData = async () => {
setLoading(true);
try {
// 使用 queryMyOrders 接口,这里我们需要调整该接口以支持仅传手机号(如果已登录)
// 或者,既然已登录,后端应该能通过 Token 知道是谁,直接查这个人的订单
// 但目前的 queryMyOrders 是 POST {phone_number, code},这主要用于免登录查询
// 我们应该使用 OrderViewSet 的 list 方法,它已经支持 filter(wechat_user=user)
// 但前端 api.js 中 getOrder 是查单个,我们需要一个 getMyOrders 接口
// 修改策略:如果已登录,直接调用 queryMyOrders但不需要 code
// 后端 my_orders 接口目前强制需要 code。
// 应该使用 OrderViewSet 的标准 list 接口,它会根据 Token 返回自己的订单。
// api.js 中没有导出 getOrders list 接口,我们可以临时用 queryMyOrders 但绕过 code 检查?
// 不,最好的方式是使用标准的 GET /orders/,后端 OrderViewSet.get_queryset 已经处理了 get_current_wechat_user
// 让我们先用 GET /orders/ 试试,需要在 api.js 确认是否有 export
// 检查 api.js 发现没有 getOrderList 只有 getOrder(id)
// 我们需要修改 api.js 或在此处直接调用
// 为了不修改 api.js 太多,我们引入 axios 实例自己发请求,或者假设 api.js 有一个 getMyOrderList
// 实际上,查看 api.js queryMyOrders 是 POST /orders/my_orders/,这是免登录版本
// 我们应该用 GET /orders/,因为 get_queryset 已经过滤了。
// 临时引入 api 实例
const { default: api } = await import('../api');
const response = await api.get('/orders/');
setOrders(response.data);
if (response.data.length === 0) {
message.info('您暂时没有订单');
// Parallel fetch
const [ordersRes, activitiesRes] = await Promise.allSettled([
api.get('/orders/'),
getMySignups()
]);
if (ordersRes.status === 'fulfilled') {
setOrders(ordersRes.value.data);
}
if (activitiesRes.status === 'fulfilled') {
setActivities(activitiesRes.value.data);
}
} catch (error) {
console.error(error);
message.error('查询出错');
@@ -107,104 +93,176 @@ const MyOrders = () => {
<div style={{ marginBottom: 20, textAlign: 'right', color: '#fff' }}>
当前登录用户: <span style={{ color: '#00b96b', fontWeight: 'bold', marginRight: 10 }}>{user.nickname}</span>
<Button
onClick={() => handleQueryOrders(user.phone_number)}
onClick={handleQueryData}
loading={loading}
icon={<SearchOutlined />}
>
刷新订单
刷新
</Button>
</div>
<List
grid={{ gutter: 24, xs: 1, sm: 1, md: 2, lg: 2, xl: 3, xxl: 3 }}
dataSource={orders}
loading={loading}
renderItem={order => (
<List.Item>
<Card
hoverable
onClick={() => showDetail(order)}
title={<Space><span style={{ color: '#fff' }}>订单号: {order.id}</span> {getStatusTag(order.status)}</Space>}
style={{
background: 'rgba(0,0,0,0.6)',
border: '1px solid rgba(255,255,255,0.1)',
marginBottom: 10,
backdropFilter: 'blur(10px)'
}}
headStyle={{ borderBottom: '1px solid rgba(255,255,255,0.1)' }}
bodyStyle={{ padding: '20px' }}
>
<div style={{ color: '#ccc' }}>
<div style={{ display: 'flex', justifyContent: 'space-between', marginBottom: 10 }}>
<Text strong style={{ color: '#00b96b', fontSize: 16 }}>{order.total_price} </Text>
<Text style={{ color: '#888' }}>{new Date(order.created_at).toLocaleString()}</Text>
</div>
<div style={{ background: 'rgba(255,255,255,0.05)', padding: 15, borderRadius: 8, marginBottom: 15 }}>
<Space align="center" size="middle">
{order.config_image ? (
<img
src={order.config_image}
alt={order.config_name}
style={{ width: 60, height: 60, objectFit: 'cover', borderRadius: 8, border: '1px solid rgba(255,255,255,0.1)' }}
/>
) : (
<div style={{
width: 60,
height: 60,
background: 'rgba(24,144,255,0.1)',
borderRadius: 8,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
border: '1px solid rgba(24,144,255,0.2)'
}}>
<InboxOutlined style={{ fontSize: 24, color: '#1890ff' }} />
</div>
)}
<div>
<div style={{ color: '#fff', fontSize: 16, fontWeight: '500', marginBottom: 4 }}>{order.config_name || `商品 ID: ${order.config}`}</div>
<div style={{ color: '#888' }}>数量: <span style={{ color: '#00b96b' }}>x{order.quantity}</span></div>
</div>
</Space>
</div>
<Tabs defaultActiveKey="1" items={[
{
key: '1',
label: <span style={{ fontSize: 16 }}>我的订单</span>,
children: (
<List
grid={{ gutter: 24, xs: 1, sm: 1, md: 2, lg: 2, xl: 3, xxl: 3 }}
dataSource={orders}
loading={loading}
renderItem={order => (
<List.Item>
<Card
hoverable
onClick={() => showDetail(order)}
title={<Space><span style={{ color: '#fff' }}>订单号: {order.id}</span> {getStatusTag(order.status)}</Space>}
style={{
background: 'rgba(0,0,0,0.6)',
border: '1px solid rgba(255,255,255,0.1)',
marginBottom: 10,
backdropFilter: 'blur(10px)'
}}
headStyle={{ borderBottom: '1px solid rgba(255,255,255,0.1)' }}
bodyStyle={{ padding: '20px' }}
>
<div style={{ color: '#ccc' }}>
<div style={{ display: 'flex', justifyContent: 'space-between', marginBottom: 10 }}>
<Text strong style={{ color: '#00b96b', fontSize: 16 }}>{order.total_price} </Text>
<Text style={{ color: '#888' }}>{new Date(order.created_at).toLocaleString()}</Text>
</div>
<div style={{ background: 'rgba(255,255,255,0.05)', padding: 15, borderRadius: 8, marginBottom: 15 }}>
<Space align="center" size="middle">
{order.config_image ? (
<img
src={order.config_image}
alt={order.config_name}
style={{ width: 60, height: 60, objectFit: 'cover', borderRadius: 8, border: '1px solid rgba(255,255,255,0.1)' }}
/>
) : (
<div style={{
width: 60,
height: 60,
background: 'rgba(24,144,255,0.1)',
borderRadius: 8,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
border: '1px solid rgba(24,144,255,0.2)'
}}>
<InboxOutlined style={{ fontSize: 24, color: '#1890ff' }} />
</div>
)}
<div>
<div style={{ color: '#fff', fontSize: 16, fontWeight: '500', marginBottom: 4 }}>{order.config_name || `商品 ID: ${order.config}`}</div>
<div style={{ color: '#888' }}>数量: <span style={{ color: '#00b96b' }}>x{order.quantity}</span></div>
</div>
</Space>
</div>
{(order.courier_name || order.tracking_number) && (
<div style={{ background: 'rgba(24,144,255,0.1)', padding: 15, borderRadius: 8, border: '1px solid rgba(24,144,255,0.3)' }}>
<Space direction="vertical" style={{ width: '100%' }}>
<Space>
<CarOutlined style={{ color: '#1890ff', fontSize: 18 }} />
<Text style={{ color: '#fff', fontSize: 16 }}>物流信息</Text>
</Space>
<Divider style={{ margin: '8px 0', borderColor: 'rgba(255,255,255,0.1)' }} />
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
<span style={{ color: '#aaa' }}>快递公司:</span>
<span style={{ color: '#fff' }}>{order.courier_name || '未知'}</span>
</div>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<span style={{ color: '#aaa' }}>快递单号:</span>
{order.tracking_number ? (
<div onClick={(e) => e.stopPropagation()}>
<Paragraph
copyable={{ text: order.tracking_number, tooltips: ['复制', '已复制'] }}
style={{ color: '#fff', fontFamily: 'monospace', fontSize: 16, margin: 0 }}
>
{order.tracking_number}
</Paragraph>
{(order.courier_name || order.tracking_number) && (
<div style={{ background: 'rgba(24,144,255,0.1)', padding: 15, borderRadius: 8, border: '1px solid rgba(24,144,255,0.3)' }}>
<Space direction="vertical" style={{ width: '100%' }}>
<Space>
<CarOutlined style={{ color: '#1890ff', fontSize: 18 }} />
<Text style={{ color: '#fff', fontSize: 16 }}>物流信息</Text>
</Space>
<Divider style={{ margin: '8px 0', borderColor: 'rgba(255,255,255,0.1)' }} />
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
<span style={{ color: '#aaa' }}>快递公司:</span>
<span style={{ color: '#fff' }}>{order.courier_name || '未知'}</span>
</div>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<span style={{ color: '#aaa' }}>快递单号:</span>
{order.tracking_number ? (
<div onClick={(e) => e.stopPropagation()}>
<Paragraph
copyable={{ text: order.tracking_number, tooltips: ['复制', '已复制'] }}
style={{ color: '#fff', fontFamily: 'monospace', fontSize: 16, margin: 0 }}
>
{order.tracking_number}
</Paragraph>
</div>
) : (
<span style={{ color: '#fff', fontFamily: 'monospace', fontSize: 16 }}>暂无单号</span>
)}
</div>
</Space>
</div>
) : (
<span style={{ color: '#fff', fontFamily: 'monospace', fontSize: 16 }}>暂无单号</span>
)}
</div>
</Space>
</div>
)}
</div>
</Card>
</List.Item>
)}
locale={{ emptyText: <div style={{ color: '#888', padding: 40, textAlign: 'center' }}>暂无订单信息</div> }}
/>
)}
</div>
</Card>
</List.Item>
)}
locale={{ emptyText: <div style={{ color: '#888', padding: 40, textAlign: 'center' }}>暂无订单信息</div> }}
/>
)
},
{
key: '2',
label: <span style={{ fontSize: 16 }}>我的活动</span>,
children: (
<List
grid={{ gutter: 24, xs: 1, sm: 1, md: 2, lg: 2, xl: 3, xxl: 3 }}
dataSource={activities}
loading={loading}
renderItem={item => {
const activity = item.activity_info || item.activity || item;
return (
<List.Item>
<Card
hoverable
onClick={() => navigate(`/activity/${activity.id}`)}
cover={
<div style={{ height: 160, overflow: 'hidden' }}>
<img
alt={activity.title}
src={activity.cover_image || activity.banner_url || 'https://via.placeholder.com/400x200'}
style={{ width: '100%', height: '100%', objectFit: 'cover' }}
/>
</div>
}
style={{
background: 'rgba(0,0,0,0.6)',
border: '1px solid rgba(255,255,255,0.1)',
marginBottom: 10,
backdropFilter: 'blur(10px)',
overflow: 'hidden'
}}
headStyle={{ borderBottom: '1px solid rgba(255,255,255,0.1)' }}
bodyStyle={{ padding: '16px' }}
>
<div style={{ color: '#ccc' }}>
<Title level={4} style={{ color: '#fff', marginBottom: 10, fontSize: 18 }} ellipsis={{ rows: 1 }}>{activity.title}</Title>
<div style={{ marginBottom: 12 }}>
<Space>
<CalendarOutlined style={{ color: '#00b96b' }} />
<Text style={{ color: '#bbb' }}>{new Date(activity.start_time).toLocaleDateString()}</Text>
</Space>
</div>
<div style={{ marginBottom: 12 }}>
<Space>
<EnvironmentOutlined style={{ color: '#00f0ff' }} />
<Text style={{ color: '#bbb' }} ellipsis>{activity.location || '线上活动'}</Text>
</Space>
</div>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginTop: 16 }}>
<Tag color="blue">{activity.status || '已报名'}</Tag>
<Button type="primary" size="small" ghost>查看详情</Button>
</div>
</div>
</Card>
</List.Item>
);
}}
locale={{ emptyText: <div style={{ color: '#888', padding: 40, textAlign: 'center' }}>暂无活动报名</div> }}
/>
)
}
]} />
</motion.div>
)}

View File

@@ -0,0 +1,23 @@
@primary-color: #00b96b;
@secondary-color: #00f0ff;
@text-color: #ffffff;
@text-secondary: rgba(255, 255, 255, 0.65);
@bg-color: #000000;
@card-bg: rgba(255, 255, 255, 0.05);
@border-radius-base: 16px;
@box-shadow-base: 0 8px 32px rgba(0, 0, 0, 0.3);
@font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
// Mixins
.glass-effect() {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.flex-center() {
display: flex;
justify-content: center;
align-items: center;
}

View File

@@ -1,10 +1,24 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import viteImagemin from 'vite-plugin-imagemin'
//123
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [
react(),
viteImagemin({
gifsicle: { optimizationLevel: 7, interlaced: false },
optipng: { optimizationLevel: 7 },
mozjpeg: { quality: 20 },
pngquant: { quality: [0.8, 0.9], speed: 4 },
svgo: {
plugins: [
{ name: 'removeViewBox' },
{ name: 'removeEmptyAttrs', active: false },
],
},
}),
],
server: {
host: '0.0.0.0',
port: 5173,